Prepare for your Next Interview
|
Welcome to the Geeks Talk forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
This is a discussion on Task manager like application using vb.Net within the VB.NET forums, part of the Software Development category; I am developing a task manager like application using vb.net. I have written following code for that. Dim poc() as process = process.getprocesses() for i as integer = 0 to ...
|
|||||||
|
|||
|
Task manager like application using vb.Net
I am developing a task manager like application using vb.net. I have written following code for that.
Dim poc() as process = process.getprocesses() for i as integer = 0 to poc.length - 1 if poc(i).processname.tostring <> "system" or poc(i).processname.tostring <> "idle" then try lstview.items.add(environment.machinename) lstview.items(i).subitems.add(poc(i).processname) lstview.items(i).subitems.add(poc(i).mainmodule.filename) lstview.items(i).subitems.add(poc(i).mainwindowtitle) catch ex as exception msgbox(poc(i).processname.tostring & " " & ex.message) end try end if next however one new need in this project is that it should display me the arguments which were passed to the process when it was started. E. G. If xcopy command is running, then in front of the xcopy imagename, its corresponding source [destination] arguments should be displayed. But in this no luck till so far. Any idea? Thanks in advance NOTE : [this question was asked by mkatpatal] Last edited by JobHelper; 12-22-2006 at 06:31 AM. |
| Sponsored Links |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Session Manager | Lokesh M | ASP.NET | 1 | 06-04-2008 09:52 AM |
| Application on unix | Lokesh M | Unix/Linux | 2 | 01-16-2007 07:48 AM |
| Getting rid of task on the PC | Lokesh M | Windows | 9 | 01-11-2007 03:05 AM |
| WebSphere V5.0 : Java Development - Use task view | Lokesh M | Web Tools | 0 | 06-10-2006 09:06 AM |