Search Result

Collapse
2 results in 0.0038 seconds.
Keywords
Members
Tags
processstartinfo
  •  

  • nazomens
    started a topic strange behaviour
    in .NET

    strange behaviour

    Can anyone explaint the next thing:

    In the asp development environment (visual studio 2008, MS SQL Server) I can CopyFile files from one place on the network to another place and after that I can print them with ProcessStartInf o propeerties and methods.
    My production environment is on the same server as the development environment and I use exactly the same maps in both environments. Yet when I try to print files from the production...
    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...