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 8502139
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T01:24:07+00:00 2026-06-11T01:24:07+00:00

I am trying to invoke the Run dialogue box that is often on the

  • 0

I am trying to invoke the “Run” dialogue box that is often on the Start Menu – I did some research and have only managed to find one way of accessing it (using “Windows Key” + R).

So I assume simulating key strokes e.g.:

SendKeys.Send("{TEST}") 

would do the job? Although how can you simulate the “Windows” key on the keyboard?

I am sure there is an easier way of doing this – without using sendkeys – anyone have any ideas?

  • 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-11T01:24:08+00:00Added an answer on June 11, 2026 at 1:24 am

    You can use PInvoke to invoke Run dialog.

    [Flags()]
    public enum RunFileDialogFlags : uint
    {
    
        /// <summary>
        /// Don't use any of the flags (only works alone)
        /// </summary>
        None = 0x0000,    
    
        /// <summary>
        /// Removes the browse button
        /// </summary>
        NoBrowse = 0x0001,
    
        /// <summary>
        /// No default item selected
        /// </summary>
        NoDefault = 0x0002,
    
        /// <summary>
        /// Calculates the working directory from the file name
        /// </summary>
        CalcDirectory = 0x0004,
    
        /// <summary>
        /// Removes the edit box label
        /// </summary>
        NoLabel = 0x0008,
    
        /// <summary>
        /// Removes the separate memory space checkbox (Windows NT only)
        /// </summary>
        NoSeperateMemory = 0x0020
    }
    

    we need to Import the DLL using the DllImport attribute.

    [DllImport("shell32.dll", CharSet = CharSet.Auto, EntryPoint = "#61", SetLastError = true)]
    
    static extern bool SHRunFileDialog(IntPtr hwndOwner, 
                                       IntPtr hIcon, 
                                       string lpszPath,
                                       string lpszDialogTitle, 
                                       string lpszDialogTextBody, 
                                       RunFileDialogFlags uflags);
    

    Implementation:

    private void ShowRunDialog(object sender, RoutedEventArgs e)
    {
        SHRunFileDialog(IntPtr.Zero, 
                        IntPtr.Zero, 
                        "c:\\",
                        "Run Dialog using PInvoke",
                        "Type the name of a program, folder or internet address 
                and Windows will open that for you.",
                        RunFileDialogFlags.CalcDirectory);
    

    }

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

Sidebar

Related Questions

I'm trying to run some NUnit tests that use NMock2 for mocking. These tests
I have a legacy application that I am trying to run under an Azure
I have to ship some groovy code to some users that have only java
I need to invoke Selenium from Client Side, so I'm trying to run Selenium
I'm trying to invoke a method from another class that means I want to
I'm trying to invoke a method that takes a super class as a parameter
I am trying to invoke an ANT target from Windows (right-click) file context menu.
I'm currently trying to invoke a web service from a web application that I've
I'm trying to invoke some C++ code in case a trigger is called inside
I am trying to run flymake mode with CoffeeScript. For some reason when I

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.