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...
Search Result
Collapse
2 results in 0.0014 seconds.
Keywords
Members
Tags
-
System modal form show problem
-
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;
Last edited by Frinavale; Jun 1 '09, 03:02 PM. Reason: Added code tags. Please post code within [code] [/code] tags.