Reputation: 6233
How do I implement a save and load dialogue box into my current project? I only need to know how change the basics, like the filename mask and default path.
Any help appreciated, or even a link to a helpful website.
Thanks.
Upvotes: 2
Views: 9825
Reputation: 23971
TheForger's WinAPI tutorial is the best IMHO and the part I linked also answers your question.
In WinAPI, the save and open dialogs are created by the functions GetSaveFileName()
and GetOpenFileName()
. The parameters of the dialog, such as the file name filter is stored in an OPENFILENAME
struct.
Upvotes: 7