摘要:
直接貼helpThe Definition FileThe Call object or Formula expression determines the type of data it should pass to the function based on the contents of the definition file.The definition file defines the type of data the function returns, the function name, and the arguments the function accepts.The dat 阅读全文
摘要:
根據某本天書說明首先要Configure a serial port1.呼叫 CreateFile() 來開一個預設設定的新埠。2.初始化 DCB 結構內的 DCBlength 的成員。3.呼叫 GetCommState() 看剛剛開的埠的參數設定。4.修改 DCB 以符合需求。5.呼叫 SetCommState() 設定參數。於是有了以下的範例// Open the serial port.// 參數1. Pointer to the name of the port// 參數2. Access (read/write) mode// 參數3. Share mode// 參數4. Point 阅读全文
摘要:
問題: 安裝JAVA時,出現『This software has already been installed on your computer. Would you like to reinstall it?』原因: 使用Windows Installer Cleanup Utility。解決方式: 幹掉以下兩個機碼的資料夾 "HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment "HKEY_LOCAL_MACHINE\SOFTWARE\wow6432node\JavaSoft\Java Runtime 阅读全文
摘要:
CreateWindowEx ( 0, /* Extended possibilites for variation */ szClassName, /* Classname */ "Windows App", /* Title Text */ WS_CAPTION, /* default window */ CW_USEDEFAULT, /* Windows decides the position */ CW_USEDEFAULT, /* where the window ends up on the screen */ 800, /* The programs wid 阅读全文