我有一个多项目解决方案,其中一个项目是“主要”,启动项目。
从这个项目中,我开始在其他项目中启动表单,这些表单都在启动项目中被引用。
问题是我可以将这些表单作为这样的实例启动:
Dim ka As New otherproject.frm_thatform
With ka
.BringToFront()
.Show(Me)
End With
每次都会打开新的“thatform”,但我想每次都像单个实例一样启动“thatform”,并且“thatform”出现在前面。
怎么做?
我尝试这样:
Dim ka As otherproject.frm_thatform
With ka
.BringToFront()
.Show(Me)
End With
...但这不起作用(对象引用未设置为对象的实例)。