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

  • Home
  • SEARCH
  • 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 9314335
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T02:06:32+00:00 2026-06-19T02:06:32+00:00

Is it possible to show a WinForms modal form over another process’s main window?

  • 0

Is it possible to show a WinForms modal form over another process’s main window?

For example my WinForms application consists of one form which is modal over another process’s main window with PID x.

  • 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-19T02:06:33+00:00Added an answer on June 19, 2026 at 2:06 am

    You can show it as a dialog, like so:

    Form1 frm = new Form1();
    frm.ShowDialog(this);
    frm.Dispose();
    

    You pass the current IWin32Window or form you want to be the owner, so if you’re calling it from say a button click on the parent form, just pass through this.

    You want to be able to get the IWin32Window for another process, which is possible, but I don’t know if showing a form as a modal over that is.

    var proc = Process.GetProcesses().Where(x => x.ProcessName == "notepad").First();
    IWin32Window w = Control.FromHandle(proc.MainWindowHandle);
    
    using (Form1 frm = new Form1())
    {
        frm.ShowDialog(w);
    }
    

    This is how it would work, if it was possible, however, it doesn’t seem to work for me.

    This link may shed a bit more information on the subject: How can I make a child process window to appear modal in my process?

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

Sidebar

Related Questions

Possible Duplicate: Programatically show tooltip in winforms application When set a TooltipText on a
Possible Duplicate: How do I show console output/window in a forms application? Is there
Scenario I have a C# WinForms application with a main form. I also have
is it possible to show the MFMessageComposerViewController in specified area in the main view.
Is it possible to show a tooltip without making a link? For example, I
In a WinForms (3.5) application there is form with a monthCalendar control. The calendar
Is it possible in WinForms to show a text inside a NumericUpDown control? For
I am using WinForms for a C# project and my main form has a
I have a Winforms application that uses show multiple top-level windows: Form1 form1 =
Is it possible to show line numbers in the Developer Center when editing xslt

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.