Article | 41024251 |
Type | HowTo |
Product | Engine |
Version | 5.1.1.1041 |
Date Added | 6/23/2006 |
Submitted by | Patrichi, Donald |
Keywords |
Just change the GetSaveFilterFormat event code to :
private void vdraw_GetSaveFileFilterFormat(object sender, AxVDProLib5._DVdrawEvents_GetSaveFileFilterFormatEvent e)
{
String appPath = vdraw.GetUserValue("DrawingConvertAppPath","");
if(appPath == ("")) return;
String filetypes =("");
filetypes += ("DWG 2004 (*.dwg)|*.dwg|");
filetypes += ("|");
filetypes += ("? 8 ");
e.fileFilterFormats = filetypes;
}