请教如何在CAD中做一个窗体通过选择路径来打开指定的DWG文件
<P>请教如何在CAD中做一个窗体通过选择路径来打开指定的DWG文件,我用CommonDialog控件没有实现这个功能,请指点~</P> <P>你看这样行吗?</P><P>我不知道是不你说的那样..</P>
<P> </P>
<P>-----------------------------------------</P>
<P>Dim DwgPath As String<BR>On Error Resume Next<BR>With CommonDialog1<BR> .CancelError = True<BR> .MaxFileSize = 32767<BR> .Flags = cdlOFNHideReadOnly Or cdlOFNAllowMultiselect Or cdlOFNExplorer Or cdlOFNNoDereferenceLinks<BR> .DialogTitle = "Select File"<BR> .Filter = "Drawing(*.dwg)|*.dwg|*(*.*)|*.*"<BR> .ShowOpen<BR> DwgPath = .FileName<BR>End With</P>
<P>Application.Documents.Open DwgPath</P>
<P><BR> </P>
页:
[1]