[VB2005] How to list running processes in Windows Mobile 5/6/6.1

PC Master

New member
Joined
Feb 25, 2008
Messages
1
Programming Experience
3-5
Hi all..

i want to list running processes in windows mobile

i tried to use this code but didn't work

VB.NET:
lst.Items.Clear()
lst.DisplayMember = "ProcessName"
Dim p As Process
For Each p In Process.GetProcesses
     lst.Items.Add(p.ProcessName)
Next

i need the mobile version code :(

please it's very important :(

thank you all
 
Back
Top