Jump to content
Xtreme .Net Talk

How to point variable to NetworkStream1 or NetworkStream2?


Recommended Posts

Guest cgchris99
Posted

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

Guest cgchris99
Posted

I could be mistaken.

 

but this Creates a copy of NetworkStream1. Changes made to NS will not actually effect NetworkStream1?

 

Am I wrong?

 

Thanks

Guest cgchris99
Posted

Sorry, I should have read your post more closely.

I will try this.

 

thanks

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...