E Ed Willis Nov 13, 2003 #1 How can I obtain the IP address of the machine that my VB app is running on? Thanks.
P Patrick Steele [MVP] Nov 13, 2003 #2 How can I obtain the IP address of the machine that my VB app is running on? Click to expand... Here's a C# example, but it shows you the objects and methods you need to use: http://tinyurl.com/uuyu
How can I obtain the IP address of the machine that my VB app is running on? Click to expand... Here's a C# example, but it shows you the objects and methods you need to use: http://tinyurl.com/uuyu
C Cor Nov 13, 2003 #3 Hi Ed, Dim myWorkstation As String = System.Net.Dns.GetHostName() Dim IPAdress As String = _ System.Net.Dns.Resolve(myWorkstation).AddressList(0).ToString Cor
Hi Ed, Dim myWorkstation As String = System.Net.Dns.GetHostName() Dim IPAdress As String = _ System.Net.Dns.Resolve(myWorkstation).AddressList(0).ToString Cor
H Herfried K. Wagner [MVP] Nov 13, 2003 #4 * "Ed Willis said: How can I obtain the IP address of the machine that my VB app is running on? Click to expand... <http://www.activevb.de/rubriken/vbdotnettipps/tipp0016.html> -- Herfried K. Wagner MVP · VB Classic, VB.NET <http://www.mvps.org/dotnet> <http://www.plig.net/nnq/nquote.html>
* "Ed Willis said: How can I obtain the IP address of the machine that my VB app is running on? Click to expand... <http://www.activevb.de/rubriken/vbdotnettipps/tipp0016.html> -- Herfried K. Wagner MVP · VB Classic, VB.NET <http://www.mvps.org/dotnet> <http://www.plig.net/nnq/nquote.html>