字符串收发

启用串口

首先在项目事件AfterOpenProject中打开需要使用的串口:

Ports.Add("COM2")
Ports(
"COM2"
).Open()

发送字符串

Ports("COM2").Write("foxtable")

接收字符串

将DataReceived事件代码设置为:

Dim s As String
s = e.Port.ReadExisting()

你也可以在任何地方使用下面的代码接收串口数据:

Dim s As String
s = Ports(
"COM2"
).ReadExisting()


本页地址:http://www.foxtable.com/webhelp/topics/1978.htm