hmmm, you have a good point but for some reason, i can't seem to get
opennetcf working.
you see, my application, would require me to retrieve the imei
programatically, create a gprs connection and send that info to a
server side application. I am sure i will be able to create a gprs
connection and send that information and stuff as i spend more time
programming.
But, i can't retrieve the imei. I did all the searches and im using the
getDeviceID function and it doesn't work. This is what i do
-----
Imports OpenNETCF.win32
Dim phoneCore as core
lblDeviceId = phoneCore.getDeviceId()
-----
In my emulator, it returns a fake imei, "000001-0000-0000-0000" and in
my phone, (O2 Xphone), it returns the same fake imei. I thought it was
something to do with me not having enough privileges on my cellphone or
something.
So i decided to go to
http://msdn.microsoft.com/library/de...e_security.asp
and look at how i can resolve this issue and after reading it, i
connected my phone to my pc via usb, created an activesync connection
and ran the command "rapiconfig /p sdktestcerts.xml " and it ran the
command successfully.
To test whether or not my phone had developer cert, i use the PHM
Registry Editor application to see if i can access all the 'locked'
registry keys and i could read them but not change them. So if my phone
supposedly has developer certificates, why would get DeviceID return me
the fake imei on my cellphone?
I read more and I saw some code regarding getlineinfo. This is the
reason i decided not to use OpenNETCF. What am i doing wrong?