hi, GetSaveFileName retuns a string without extension.
is there a way i can make it add the extension to the filename?
the filter is ok. i define it like this:

Code:
    		CStringT::ConstDataT ExportFilterList[] = {
    			S("Scene Editor Object (*.seo)"), S("*.seo"),
    			S("3D Studio Max Object (*.3ds)"), S("*.3ds"),
    			S("Blender Object (*.blend)"), S("*.blend"),
    			S("Milkshape3D Object (*.m3d)"), S("*.m3d"),
    			S("\0")};
constdatat is either char const* or wchar_t const *