Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7891999
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T06:45:35+00:00 2026-06-03T06:45:35+00:00

I would like to open process in within my windows form application. For example

  • 0

I would like to open process in within my windows form application.

For example I would like when a user press on button in one of the windows form container the mstsc.exe will open.

And if he will press on the button it will open IE on another container,

[DllImport("user32.dll", SetLastError = true)]
        static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
       private void button1_Click(object sender, EventArgs e)
    {
        Process p = Process.Start("mstsc.exe", @"c:\VPN4.rdp");
        Thread.Sleep(3000);
        p.StartInfo.CreateNoWindow = true;    // new
        SetParent(p.MainWindowHandle, this.panel1.Handle);
        p.StartInfo.WindowStyle = ProcessWindowStyle.Maximized;   //new

    }

It open the process but not in the windows form ,,,

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T06:45:36+00:00Added an answer on June 3, 2026 at 6:45 am

    You can start another process, and place it’s window inside your own.

    Try using your forms handle instead of the panels. Here is a short example

    private void toolStripButton1_Click(object sender, EventArgs e)
    {
      ProcessStartInfo info = new ProcessStartInfo();
      info.FileName = "notepad";
      info.UseShellExecute = true;
      var process = Process.Start(info);
    
      Thread.Sleep(2000);
    
      SetParent(process.MainWindowHandle, this.Handle);
    }
    

    As for the original questions specific problem, I would guess it is due to remote desktop opening other windows for the application to do it’s work, and the MainWindowHandle is not the one you are after.

    Try using FindWindowEx in the windows API to search for the correct window. If you search by process ID and title, you ought to find the right one. Stackoverflow and google have a large amount of information. Just search for “C# FindWindowEx”

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How would I open a program within Visual Basic 2010? (Like running Application.txt from
I would like to know if a file is open by any process (including
I would like to open a website in a user's default web browser, however
I'm currently writing an application that I would like to open in a new
i have a code generator project i would like to offer like open source,
I would like to open an OleDbConnection to an Excel file that's in memory
I would like to open a document after my ASP.NET page loads in a
I would like to open up the compose page for gmail in an iframe
I would like to open a popup window using javascript in my c#.net app.
I would like to open 2 url's using open $url = 'http://xtreme-jumps.eu/demos.txt'; $url2 =

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.