怎样让窗体在cad中 自动切换 show的方式
<p> 我添加两个按钮实现,但是这样用的时候有点麻烦,有没有方法是自动识别的,鼠标点到窗体就 Show vbModal 点到autocad程序就Show vbModeless。。</p><p>Private Sub CommandButton6_Click() '切换到程序<br/> LTPT.Hide<br/> CommandButton7.Visible = True<br/> CommandButton6.Visible = False<br/> LTPT.Show vbModal <br/>End Sub</p><p>Private Sub CommandButton7_Click() '切换到绘图<br/> LTPT.Hide<br/> CommandButton6.Visible = True<br/> CommandButton7.Visible = False<br/> LTPT.Show vbModeless<br/> <br/>End Sub</p> 知道方法了,在form窗体上添加个<font face="Verdana">AcFocusCtrl</font>控件,form的ShowModal属性改成FALSE就行了。。。 方法很有用,学习了,谢谢楼主分享
页:
[1]