1
Answer

PDA Name

Mark Janssen

Mark Janssen

18y
3.9k
1
Hello,

I'm new here and had a question.

I'm currently developing an application for PDA's, with this application I need to identify the PDA preferrably by computername (PDA name), or any other unique id on a network. (IP's vary) Normally i'd use the kernel dll to retrieve the computername but the PDA's don't have this by my knowledge. Does anyone have a solution for this?

Best regards,

Mark
Answers (1)
1
R ACHUTHA

R ACHUTHA

NA 483 23k 12y
try the following 

        Random RandomClass = new Random();
        int[] Nums = new int[3];
        Nums[0]= RandomClass.Next(0, 50);
        Nums[1] = RandomClass.Next(0, 50);
        Nums[2] = RandomClass.Next(0, 50);
        Array.Sort(Nums);

         tb1.Text = Nums[0].ToString(); 
         tb2.Text = Nums[1].ToString();
         tb3.Text = Nums[2].ToString();

0
Joey

Joey

NA 6 2.3k 12y
Thank you :D