
Step 1. Open one of c# sample projects:C:\Program Files (x86)\Euresys\eVision\Cs Samples\Step 2. Choose Ocv directory and then open Ocv70.sln, some upgrade processes will be needed Step 3. Verify the reference component (eVision.Clr) is loaded successfully as shown belowStep 4. Select exception conditions<例外狀況> in the debug menustripStep 5. Uncheck LoaderLock setting in oder to avoid annoying warning dialog keeps showing when compiling the program.Step 6. Choose a suitable operating system, x86 will be fine in this caseStep 7. Compile and run it! BrokenUnderprint
me1237guy 發表在 痞客邦 留言(0) 人氣(369)

註冊eVision元件> regsvr32 eVision.ocx附註: 反註冊eVision元件(卸載)> regsvr32 /u eVision.ocx開啟Visual Studio工具箱, 在工具箱上方按滑鼠右鍵, 選擇<選擇項目>COM元件選單, 勾選eVision相關元件, E*字首的元件名稱
Case 1:failed to compile the project 0x2040 執行緒以返回碼 0 (0x0) 結束。
'test.vshost.exe' (Managed): 已載入 'C:\Users\ryanwang\Documents\Visual Studio 2008\Projects\test\test\bin\Release\test.exe',已載入符號。
'test.vshost.exe' (Managed): 已載入 'C:\Users\ryanwang\Documents\Visual Studio 2008\Projects\test\test\bin\Release\AxInterop.eVision.dll'
'test.vshost.exe' (Managed): 已載入 'C:\Windows\assembly\GAC_MSIL\System.Windows.Forms.resources\2.0.0.0_zh-CHT_b77a5c561934e089\System.Windows.Forms.resources.dll'
第一個可能發生的例外狀況類型 'System.Runtime.InteropServices.COMException' 發生於 System.Windows.Forms.dll
第一個可能發生的例外狀況類型 'System.Runtime.InteropServices.COMException' 發生於 System.Windows.Forms.dll
類型 'System.Runtime.InteropServices.COMException' 的未處理例外狀況發生於 System.Windows.Forms.dll
me1237guy 發表在 痞客邦 留言(0) 人氣(862)

Windows (Win32 Installer)
cmake-2.8.12.2-win32-x86.exe
me1237guy 發表在 痞客邦 留言(0) 人氣(67)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections; // 加入才看得到ArrayList
me1237guy 發表在 痞客邦 留言(0) 人氣(217)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleEnum
{
class EnumTest
{
enum MyColor
{
Red,
Blue,
Green
}
static void Main(string[] args)
{
Console.WriteLine("紅色: " + MyColor.Red);
Console.WriteLine("綠色: " + MyColor.Green);
Console.WriteLine("藍色: " + MyColor.Blue);
Console.WriteLine("紅色: " + (int)MyColor.Red);
Console.WriteLine("綠色: " + (int)MyColor.Green);
Console.WriteLine("藍色: " + (int)MyColor.Blue);
me1237guy 發表在 痞客邦 留言(0) 人氣(201)

Donwloading JAVA JDK….the size is about 1.45GB
me1237guy 發表在 痞客邦 留言(0) 人氣(8)

>> mex –setup安裝套件檔案好大啊!!!475MB網路設定IP address請輸入想指定的IP Address, 記住不要跟你目前電腦設成同一組才不會衝突!!!電腦與樹梅派的IP必須相同網段例如192.168.1.xxx放入裝有樹梅派的SD卡寫入firmware image 容量大小:1.85G將寫入韌體的SD卡插上RaspberryPI, 然後開機測試本地端電腦是否可以連線樹梅派
me1237guy 發表在 痞客邦 留言(0) 人氣(407)

下圖中紅色塑膠套: 可以接四組天線安裝Driver================================================================ 安裝UHF Reader Utility==================================================================RS485轉TCP/IP執行tdst-5-09-10-x64.exe
me1237guy 發表在 痞客邦 留言(0) 人氣(49)

解決方法:Visual Studio上面的選單->偵測->例外狀況->Click “Managed Debugging Assistnats”Uncheck ”LoaderLock” that will solve the problem!!!測試
me1237guy 發表在 痞客邦 留言(1) 人氣(1,906)

// ex13Interest.h
#pragma once
using namespace System;
namespace ex13Interest {
me1237guy 發表在 痞客邦 留言(0) 人氣(890)