TCP协议的问题
我写了个网口通信上位机程序,原来用的是UDP协议,现在改成TCP协议。上位机IP地址是169.254.62.101
下位机IP地址是169.254.62.30
这两个地址都可以拼通。
可是运行上位机,点击连接按钮,提示如下:
上位机程序初始化:
SckServer.Protocol = sckTCPProtocol
With SckServer
.RemoteHost = "169.254.62.101"
.RemotePort = 50000
.LocalPort = 50000
.Bind 50000
End With
请高手指教,谢谢!