当我在手持设备MC3090上运行此代码时,没问题。设备会弹出蓝牙用户界面(手持设备的用户界面),让我连接。
dim Comport as new serialport
dim port as string () =serialport.getportnames
for i as integer = 0 to port.length
with
with Comport
.portname=port(i)
.open
end with
writeInPrinter() 'this method included some command to printer by using Comport .write("Something")
但是当我在设备Keyence BT-W250GM中运行时,会导致ioexception(状态为我认为手持设备已打开状态的问题。但是如果手持设备已连接至设备,那么我该如何向打印机发送命令并让打印机将其写出...我应该调用哪个实例,而不是我的comport.write ...)。我进行了调试,并且在打开comport时会发生这种情况。我没有任何想法。任何人都有解决此类手持设备的经验?请帮助我