SetWindowsHookEx to modify GetSaveFileName
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
I want to modify MSPaint's Save file dialog's default file type to JPG using
SetWindowsHookEx
In the hook function what message should I look for to get atGetSaveFileName
?Patcher32 wrote:
I want to modify MSPaint's Save file dialog's default file type to JPG using SetWindowsHookEx
I don't know that you can hook into another program without replacing a dll that is used by the application. And even if you did, you still need to figure out what message MSPaint uses to signal File Save. However, if you do figure out how to do this I would be very interested in the solution.