Hello. I'm developing a Windows Mobile application using .NETCF2 and C#. I need to get the Owner Name of the phone. How can I do this via code?
Thanks in advance.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pavan ParetaPosted Sep 25, 2008, 1:40 AM
Add a reference to the following assemblies:
Microsoft.WindowsMobile
Microsoft.WindowsMobile.Status
use the below code snippet:
using Microsoft.WindowsMobile.Status;
MessageBox.Show(SystemState.OwnerName);
Hope that this may be Help