"Run..." dialog

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

You can show this dialog by presing "WindowsKey + R". But is it posible to
start this dialog by some rundll32.exe call? And make it as a shortcut?
 
Click Start button and then drag the RUN link to your Quick Launch. A shortcut is now created.

-or-

Use this VBScript to launch the RUN menu.

---------------------------------------------------
set objShell = CreateObject("Shell.Application")
objShell.FileRun
set objShell = nothing
---------------------------------------------------

Copy the above lines (excluding the lines) to a Notepad, and save as "run.vbs". Double-click run.vbs and the RUN menu is shown.

More Information about the Shell commands:
http://msdn.microsoft.com/library/d...m/shell/reference/objects/shell/findfiles.asp

--
Ramesh, Microsoft MVP
Windows XP Shell/User
http://windowsxp.mvps.org


You can show this dialog by presing "WindowsKey + R". But is it posible to
start this dialog by some rundll32.exe call? And make it as a shortcut?
 
Back
Top