VB6 0好用模組 1 0串列埠

2021-10-09 06:24:01 字數 971 閱讀 3469

vb6.0好用的串列埠模組類

使用方法如下

//該函式功能將得到的com口進行從小到大排序寫入combobox

public sub addcomforcombox(comboxcontral as combobox)

dim i as integer

dim str2com() as string        //com字串陣列

dim serial_no() as string      //根據com後面的數字進行排序

serial_no = split(getserialport, ";")   

str2com = quicksort(serial_no)

for i = 0 to ubound(str2com) - 1

comboxcontral.additem right(str2com(i), len(str2com(i)) - 3)

next i

if ubound(str2com) <> 0 then comboxcontral.listindex = 0

end sub

模組原始碼如下:

option explicit

public type sysetdatatable

parts_ini_rs as recordset

serialport_ini_rs as recordset

tester_ini_rs as recordset

testitem_ini_rs as recordset

end type

public syspartsmena as syspartsmen

private type guid   'guid資料型別

data(0 to 3) as long

end type

private type sp_devi

C 為VB6 0程式模擬串列埠資料

為vb6.0編寫程式模擬資料測試使用。一 vb6.0 控制項mscomm,來傳送接收串列埠資料 commport 屬性設定並返回通訊埠號,虛擬埠為com2。settings 屬性設定並返回埠的波特率 奇偶校驗位 資料位和停止位引數。portopen 屬性為true時埠被開啟。設定為false時將關閉...

非常好用的 Win10 串列埠除錯助手

最近把工作電腦換成了13.3寸,2.5k螢幕.在除錯微控制器時發現很多軟體字型顯示模糊.非常影響心情.還相當累眼睛.找了好久發現下面這款軟體非常不錯.有個缺點就是只支援win10系統.完美適配高分屏.解決大部分win32類軟體在高分屏模糊問題.1.接收從串列埠進來的資料並在視窗顯示。2.接收到的資料...

WinCE6 0串列埠列印函式彙總

在wince系統啟動最開始,也就是eboot部分,會完成一定串列埠的初始化,以便在後面的工作中可以在串列埠中顯示很多資訊。這也是串列埠列印的最開始部分。oemreaddebugbyte oemwritedebugbyte oemwritedebugstring 在eboot彙編跳轉到c語言的main...