That other way doesnt work
How do I make VB determine the users computers' current IP?
------------------
Printable View
That other way doesnt work
How do I make VB determine the users computers' current IP?
------------------
You could take the long way around,
by shelling cmd.exe or command.com and passing the ipconfig command... having it
output to a text file, then parse the text file to extract the IP... <sigh>
shell("command.com /c ipconfig >>c:\ip.txt")
(Open the text file and do some string wizardry)
:)