誰能告訴我,窗体從内存卸載的過程中,Terminate,Unload,QueryUnload發生的順序?<br>
在這幾個事件中寫一下MsgBox測試一下不就知道了
具體怎樣做?
Private Sub Form_Terminate() MsgBox "Terminate觸發了" End Sub Private Sub Form_Unload() MsgBox "Unload觸發了" End Sub Private Sub Form_QueryUnload() MsgBox "QueryUnload觸發了" End Sub
Rock,thanks!