Geeks Talk

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.

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 Blogs FAQ Tag Cloud Calendar Mark Forums Read

VB.NET Visualbasic.NET

Reply

 

LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 12-22-2006
Expert Member
 
Join Date: Oct 2006
Posts: 689
Thanks: 0
Thanked 53 Times in 44 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 28 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

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


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 07:47 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.1
Copyright © 2009 GeekInterview.com. All Rights Reserved