Hey all,
I'm developing an app for a WinCE barcode device. I am trying to kill an external process from my app and reload it. This would be easy if I was using Framework 3.5 as there is native code to do this. I have come across this piece of code which lists the processes in memory in a listbox.
http://msdn.microsoft.com/en-us/library/aa446560.aspx
Works perfect
Except...my app is developed in VB not C Sharp. Does anybody know if I can use the process.cs file in my VB app and call the functions from it? I've attached the process.cs file that contains the code and the calling code is as follows:
lstProcess.DataSource = Process.GetProcesses();




Reply With Quote