我通过添加对 VisM.ocx 的引用并将其作为 activeX 控件添加到我的工具箱中,将 VisM 控件添加到 vb.net 中。
我在按钮中添加了以下代码:
Try
'open the connection
AxVisM1.Connect("CN_IPTCP:127.0.0.1[57772]", "LIVEDATA")
'do stuff.
MsgBox("Cache is now active")
'close the connection
AxVisM1.DeleteConnection()
Catch ex As Exception
'close the connection
AxVisM1.DeleteConnection()
MsgBox(ex.ToString)
End Try
但是,当我运行应用程序时,连接挂起,然后是一个显示“Server Receive Timed Out”的消息框。
我试过关闭我的防火墙,甚至我的防病毒软件。我将如何解决这个问题?另外,我正在尝试一种有效的方法来访问 VB.net 中的 GLOBALS 变量吗?