Geeks Talk

Prepare for your Next Interview




Task manager like application using vb.Net

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 ...


Go Back   Geeks Talk > Software Development > VB.NET

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 12-22-2006
Expert Member
 
Join Date: Oct 2006
Posts: 690
Thanks: 0
Thanked 49 Times in 41 Posts
JobHelper is on a distinguished road
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.
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 02-01-2007
Expert Member
 
Join Date: Sep 2005
Posts: 110
Thanks: 8
Thanked 27 Times in 15 Posts
suji is on a distinguished road
Re: Task manager like application using vb.Net

I am also interested to find solution for this... any one
Reply With Quote
Reply

  Geeks Talk > Software Development > VB.NET


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


All times are GMT -4. The time now is 12:32 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Copyright © 2008 GeekInterview.com. All Rights Reserved