- Jun 09 Mon 2014 05:39
-
as operators 資料轉型
- Jun 07 Sat 2014 16:50
-
Pylon Live View C# Sample Code Review

Pylon.NETSupportLibrary 是一個好用類別, 加速開發應用程式, 達事半功倍之效使用者載入PylonC.NETSupportLibrary.dll至專案中, 便可立即使用該類別中的許多好用的方法(methods)PylonLiveView 利用Pylon.NETSupportLibrary class 展示Basler相機的一些基本功能, 如取單張影像, 連續取像, 停止取像等加入參考 PylonC.NETSupportLibrary.dll,可以在工具箱看到兩個新增控制元件 SliderUserControl 和 EnumerationComboBoxUserControl
- Jun 04 Wed 2014 17:37
-
Installing MobaXterm
- Jun 01 Sun 2014 12:45
-
How to open an existing eVision c# project with Visual Studio 2008

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
- May 31 Sat 2014 15:39
-
Registering ActiveX component: eVision.ocx

註冊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
- May 29 Thu 2014 16:57
-
安裝CMake2.8.12
- May 29 Thu 2014 14:42
-
ArrayList應用:客戶資料新增, 搜尋, 刪除

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections; // 加入才看得到ArrayList
- May 29 Thu 2014 10:51
-
enum資料列舉&資料結構struct

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);
- May 23 Fri 2014 08:37
-
Installing Xamarin .Android on windows
- May 19 Mon 2014 14:55
-
Raspberry PI with SIMULINK

>> mex –setup安裝套件檔案好大啊!!!475MB網路設定IP address請輸入想指定的IP Address, 記住不要跟你目前電腦設成同一組才不會衝突!!!電腦與樹梅派的IP必須相同網段例如192.168.1.xxx放入裝有樹梅派的SD卡寫入firmware image 容量大小:1.85G將寫入韌體的SD卡插上RaspberryPI, 然後開機測試本地端電腦是否可以連線樹梅派
- May 17 Sat 2014 17:49
-
UHF Reader Test

下圖中紅色塑膠套: 可以接四組天線安裝Driver================================================================ 安裝UHF Reader Utility==================================================================RS485轉TCP/IP執行tdst-5-09-10-x64.exe
- May 16 Fri 2014 16:44
-
請勿嘗試在 DllMain 或影像初始設定函式內部執行 Managed 程式碼

解決方法:Visual Studio上面的選單->偵測->例外狀況->Click “Managed Debugging Assistnats”Uncheck ”LoaderLock” that will solve the problem!!!測試


