如何用vb mscomm控件发送一个字节数据

2024-12-04 10:26:11
推荐回答(1个)
回答1:

1. 引用Microsoft Comm Control控件
2. 在窗体上放置comm控件
3. 在按钮下发送文字
Private Sub Command1_Click()
MSComm1.Output = "A" '发送一个字节
MSComm1.Output = "Hello" '发送字符串
MSComm1.Output = Text1.Text
End Sub