Quote Originally Posted by Medic1de View Post
But this is gonna sound ridiculously noobie, i dont have a clue what to do with it.
So I'll ask you -- how did you expect to open a "save as" dialog in code? You would need to call a function somewhere to do this work, and that is what GetSaveFileName() does --it's a function -- you call it, no different than any other function.

The parameter you pass to it is a structure that is filled with information on how the "save as" dialog is to work (filter, starting directory, etc.)

http://msdn.microsoft.com/en-us/libr...(v=vs.85).aspx
http://www.winprog.org/tutorial/app_two.html

Regards,

Paul McKenzie