[VB2005] How to list running processes in Windows Mobile 5/6/6.1
Hi all..
i want to list running processes in windows mobile
i tried to use this code but didn't work
Code:
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
Re: [VB2005] How to list running processes in Windows Mobile 5/6/6.1
i don't know why i have to reply to my own topics just to make it (noticeable) !!!
Re: [VB2005] How to list running processes in Windows Mobile 5/6/6.1
Maybe because no-one has a definitive answer for you.
Googling for 'process list compact framework' gives an article by Alex Yakhnin as the first hit, and the fifth entry points at a dll, but these are for VS2003, but I don't think they work for 2005.
The only way I am aware of is to use the SDF from opennetcf.
Re: [VB2005] How to list running processes in Windows Mobile 5/6/6.1
thanks a lot my friend =D