//遍歷串列埠實現
cstring ccomdialog::findallcom()
{hkey hkey;
int rtn;
cstring cominfo;
int i=0;
dword dwlong,dwsize;
char portname[256],commname[256];
rtn = regopenkeyex( hkey_local_machine, "hardware\\devicemap\\serialcomm",null, key_read, &hkey);//開啟串列埠登錄檔
if( rtn == error_success)
{while(1)
{memset(portname, 0, sizeof(portname));
memset(commname, 0, sizeof(commname));
dwsize = sizeof(portname);
dwlong = dwsize;
rtn = regenumvalue( hkey, i, portname, &dwlong,null, null, (puchar)commname, &dwsize );
if( rtn == error_no_more_items ) // 列舉串列埠
break;
MFC 串列埠傳送檔案
以下 在龔建偉的串列埠原始碼 上修改而來!因為龔建偉的串列埠原始碼傳送檔案錯誤,故作了下修改,可以傳送檔案了,希望可以幫助到需要的童鞋們!經過除錯,終於把這段 給寫好啦!先通過乙個button 開啟乙個檔案,然後通過檔案函式,把開啟的檔案讀到乙個指標buffer中,再利用串列埠函式把讀到的資料傳送出...
MFC 串列埠傳送檔案
mfc 串列埠傳送檔案 以下 在龔建偉的串列埠原始碼 上修改而來!因為龔建偉的串列埠原始碼傳送檔案錯誤,故作了下修改,可以傳送檔案了,希望可以幫助到需要的童鞋們!經過除錯,終於把這段 給寫好啦!先通過乙個button 開啟乙個檔案,然後通過檔案函式,把開啟的檔案讀到乙個指標buffer中,再利用串列...
MFC 串列埠程式設計例項
vc串列埠程式設計從實現方法上一般分為兩種,一種使用mscomm控制項,這種方法比較簡單,軟體的移植性較低,在這裡介紹一種串列埠封裝類的使用方法。先看 commutils.cpp include stdafx.h include commutils.h include stdio.h const i...