Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Intercetp "Run Dialog" 2

Status
Not open for further replies.

lucky34238

Programmer
May 20, 2006
18
0
0
US
Hello everyone,

How do you intercept the "Run Dialog" feature?

For example: if the user type something in edit box of the Run Dialog, and press Enter or Click OK. How do you catch that by Delphi code?

Thank you,

Lucky
 
i dont see a run dialog but for open and save dialog its
Code:
if OpenDialog1.execute then caption:=OpenDialog1.filename;

Aaron
 
aaronjme,

The "Run Dialog" is when you click on Start button you will see the Run item. You click on that to fire windows Run Dialog.

Lucky.
 
do you want a run dialog in your app or to capture the filename that someone puts into the xp run dialog?

i suspect the last.

Aaron
 
Thank you,

I would like to to capture the filename that someone puts into the windows run dialog?


Lucky
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top