MSComm1.OutBufferCount = 0
MSComm1.InBufferCount = 0
MSComm1.Output = "This is a good book!" & vbCr
MSComm1.Output = "ATDT 0731" & vbCr
Dim ByteArray as Byte ( )/*这一条语句不能通过编译,请问是为什么?*/
ReDim ByteArray(1)
ByteArray(0) = 0
ByteArray(1) = 1
MSComm1.Output = ByteArray()
End Sub