大家好,我正在尝试使用 VB6 comm32 使用 RS232 命令打开 A/V 接收器。要打开它,它说要使用:
Command code Parameter code CR Code set example
PW ON <CR> PWON<CR>
这是我目前使用的 VB6 代码,但似乎不起作用...
MSComm.CommPort = 2
MSComm.Settings = "9600,n,8,1"
MSComm.PortOpen = True
If Not MSComm.PortOpen Then
MsgBox "not opened"
Else
MSComm.Output = "PWON" & Chr(13)
Do While MSComm.InBufferCount > 0
Text1.Text = Text1.Text & MSComm.Input
Loop
End If
接收器永远不会打开。我可能做错了什么?我检查以确保 com 端口是 2,它是。
大卫