C
cgchris99
Guest
I am working with tcpClients with 2 connections and have the following
NetworkStream1 = tcpClient1.GetStream
NetworkStream2 = tcpClient2.Getstream
How do I assign NS to point to NetworkStream1 or NetworkStream2 depending on
the parameters passed to the sub routine.
For example
Public Sub ReadCameraData(ByVal CamNum)
Dim NS as NetworkStream
If CamNum=1 then
If CamNum =2 then
End Sub
I just want to make sure when I call NS.DataAvailable() is the same as
calling NetworkStream1.DataAvailable()
Another example would be variable XYZ and VarA and VarB.
Conditionally point XYZ at VarA.
When you Change value of XYZ to 91838 and then check the value of VarA it too would be 91838.
Thanks for any advice
NetworkStream1 = tcpClient1.GetStream
NetworkStream2 = tcpClient2.Getstream
How do I assign NS to point to NetworkStream1 or NetworkStream2 depending on
the parameters passed to the sub routine.
For example
Public Sub ReadCameraData(ByVal CamNum)
Dim NS as NetworkStream
If CamNum=1 then
If CamNum =2 then
End Sub
I just want to make sure when I call NS.DataAvailable() is the same as
calling NetworkStream1.DataAvailable()
Another example would be variable XYZ and VarA and VarB.
Conditionally point XYZ at VarA.
When you Change value of XYZ to 91838 and then check the value of VarA it too would be 91838.
Thanks for any advice