how to save string variable

Sabour

Active member
Joined
Sep 1, 2006
Messages
25
Programming Experience
Beginner
thx john,finaly got it to work btw why i cann't assign this into a variable? i want to use this variable on other function
VB.NET:
remIP.Address.ToString = IpAddress
VB.NET:
Error    3    Expression is a value and therefore cannot be the target of an assignment.
 
Last edited:
If 'IpAddress' is a string variable you can:
VB.NET:
IpAddress = remIP.Address.ToString
 
Back
Top