Ebeo / mw-wingui

Automatically exported from code.google.com/p/mw-wingui
0 stars 0 forks source link

[R53] string format error/ AForge x64 support error / realtime tab didn't update #34

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
1. String Format ERROR
    cause by:   Format error
    File:   MWGUIControls\heading_indicator.cs(87)
    solution:
        更正為 "{0:000°}"

2. 無法載入檔案或組件 'AForge.Video.FFMPEG ..... 
System.BadImageFormatException
Could not load file or assembly 'AForge.Video.FFMPEG, Version=2.2.3.0, 
Culture=neutral, PublicKeyToken=03563089b1be05dd' or one of its dependencies. 
An attempt was made to load a program with an incorrect format.

    cause by:   該AForge版本不支援x64核心
    reference:  http://www.aforgenet.com/forum/viewtopic.php?f=2&t=2526
    solution:
        第一種: Building target from 'Any CPU' to 'x86'
        第二種: Corresponding x64 library& *.dll

3. realtime tab didn't update
    cause by:   some sentence lose update to enum-type
    File:   mainGUI.cs (1782)
    處理方法:
        private void update_gui()
        {
        ...
        // TAB realtime
        if (tabMain.SelectedIndex == 2)         //  original(wrong)
        if (tabMain.SelectedIndex == GUIPages.Realtime) //  after correction
        ...
        }

What version of the product are you using? On what operating system?
R53/win7 x64

Please provide any additional information below.
Cheers

Original issue reported on code.google.com by michaelo...@gmail.com on 29 Oct 2013 at 11:35

GoogleCodeExporter commented 9 years ago
1. It's language setting issue on you dev machine
2. Building target from 'Any CPU' to 'x86' is the solution
3. Indeed

Original comment by eosba...@gmail.com on 29 Oct 2013 at 1:40

GoogleCodeExporter commented 9 years ago
Fixed in R54

Original comment by eosba...@gmail.com on 13 Nov 2013 at 11:43