Application run in background

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • satiss7pwr
    New Member
    • Jan 2010
    • 41

    Application run in background

    I have one web application in which I am calling one window application.

    When I call that win app, it runs in background means it shows only in task manager but does not show any window of that application.

    I have searched for this on MSDN support and do as directed, but nothing result.
    Last edited by Niheel; May 6 '10, 03:07 PM. Reason: spelling, grammar, punctuation fixed, also as requested provide more information
  • semomaniz
    Recognized Expert New Member
    • Oct 2007
    • 210

    #2
    Yor are asking for help but what is the actual problem?. you mention your application calls a windows application and runs behind the screen. What exactly are you trying to do? show us some code and the error message that you are receiving.

    Comment

    • satiss7pwr
      New Member
      • Jan 2010
      • 41

      #3
      Originally posted by semomaniz
      Yor are asking for help but what is the actual problem?. you mention your application calls a windows application and runs behind the screen. What exactly are you trying to do? show us some code and the error message that you are receiving.
      Code:
      protected void Page_Load(object sender, EventArgs e)
          {
              string str = @"D:\GSDP\scan.exe";
              Process process = new Process();
              process.StartInfo.FileName = str;
              process.Start();
          }
      this scan aaplication is run in only bacground, no any window displayed
      Last edited by Frinavale; May 7 '10, 04:46 PM. Reason: Please post code in [CODE] ... [/CODE] tags. Added code tags.

      Comment

      • Frinavale
        Recognized Expert Expert
        • Oct 2006
        • 9749

        #4
        I hope that you aren't expecting to see this application being run client-side (the user will not see this application run).

        -Frinny

        Comment

        Working...