Click here to Skip to main content
15,889,281 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can I intercept calls to the Windows File save Open dialog ? I would like to do this for any application that calls the file Open Save dialog, I wish to hook into the dialog and extend it to perform some other functionality.

I am looking to change the dialog for ALL applications that call it, not just my own.
Posted

I doubt that this is a simple matter since the dialog gets created at random points in the applications, and there is no single Windows message which would tell you that it is using this dialog (apart from WM_INITDIALOG). Applications may also customise the dialog for their own purposes so it may not look exactly alike in every case. You could try capturing every WM_INITDIALOG and then trying to figure out if this is the Open/Save.
 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900