Search Result

Collapse
2 results in 0.0014 seconds.
Keywords
Members
Tags
hidden process
  •  

  • amarniit
    started a topic System modal form show problem

    System modal form show problem

    hi,
    I created a programm for cybercafe .... but in this program there are some problem not an error but i want its more sceure......

    i want that when it run then it works as system modal form like shutdown dialog box...

    when when its timer start then user can do own work but time also running on this time also......

    and its process must not be shown in TaskManager or we can say that it must be stop...
    See more | Go to post

  • malkin
    started a topic How do I call a hidden process from a web app ?

    How do I call a hidden process from a web app ?

    Hello all,

    I have a web application which needs to call a console application and capture the output of that execution process.

    What I have is the following:
    Code:
    ProcessStartInfo psi = new ProcessStartInfo();
    psi.WindowStyle = ProcessWindowStyle.Hidden;
    psi.FileName = "doTask.exe";
    psi.Arguments = "abc";
    psi.UseShellExecute = false;
    psi.CreateNoWindow = true;
    ...
    See more | Go to post
    Last edited by Frinavale; Jun 1 '09, 03:02 PM. Reason: Added code tags. Please post code within [code] [/code] tags.
Working...