Private Sub Command1_Click()
End
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
MSComm1.output_keyascii
Text1.text_keyascii
End Sub
Private Sub Form_Load()
MSComm1.comport = 1
MSComm1.Settings = "9600,n,8,1"
MSComm1.InputLen = 0
MSComm1.PortOpen = True
End Sub
Private Sub MSComm1_OnComm()
If (MSComm1.CommEvent = comEvReceive) Then
Text2.Text = MSComm1.Input
End If
End Sub
.................................................. ............................................
mình nối chân 2,3 của cổng com1 để thử truyền và nhận dữ liệu đơn giản mà khi biên dịch thì bị lỗi. ai biết chỉ mình với!!!
Comment