Results 1 to 2 of 2

Thread: Task manager like application using vb.Net

  1. #1
    Expert Member
    Join Date
    Oct 2006
    Answers
    209

    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.

  2. #2
    Expert Member
    Join Date
    Sep 2005
    Answers
    206

    Re: Task manager like application using vb.Net

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


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact