8) Hi Randy!
I think that I can help you to solve your problem.
With the following lines you can set a file typ filter
and a default path for saving files (or you can try it
with the below mentioned procedure).
CString DefPath = "C:\\MyProject\\default_file_name";
char MyFilter[] = "Access-Files (*.mdb)|*.mdb||"; /*The string before
the
first pipe is the text in
the file type combo-
box.
The string behind
pipe is the filter
itself.*/
CFileDialog MyDialog(false, "*.mdb", DefPath,
OFN_HIDEREADONLY|OVERWRITEPROMT,
MyFilter);
if(MyDialog.DoModal() == IDOK)
{
...
}
------------------------------------------------
The second possibility is to edit the entry in the projects string
table.
There you can edit the entry of IDR_MAINFRAME.
Hope that my subscription was helpful.