IP address

T

TomHosmer

This may have been addressed before but I'll ask anyway.

Is there an easy way in VB 05 to get either the computer name or ip address
(or both) of the ActiveSync connected desktop computer on the mobile device?
(I'm working with PPC and CE 5.0 devices)
Thanks
 
G

Guest

No, there is no way to do it. It's resolved to the PPC as "PPP_PEER" but it
has no way to query the network info of the PC.

-Chris
 
M

Marcantonio

TomHosmer said:
Is there an easy way in VB 05 to get either the computer name or ip address
(or both) of the ActiveSync connected desktop computer on the mobile device?

The name should be "ppp_peer", and you should be able to resolve its ip
address with:

System.Net.Dns.GetHostEntry("ppp_peer")

However, I never really tried.

Check google:

http://tinyurl.com/pk24j

Marcantonio
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top