English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

我用VB做會出現對話視窗的程式
像是
MsgBox("sss")
MsgBox("...")
MsgBox("ooo")
MsgBox("xxx")
在執行完畢之後
他總會出現一個空白的Form1視窗
要怎麼寫才能讓那視窗不出現
就自動關閉程式
謝謝

2005-11-27 17:14:03 · 2 個解答 · 發問者 小AB 2 in 電腦與網際網路 程式設計

你說的END sub在他原本的程式碼裡面就有了
問題是
在這一段結束之後跳出的視窗
我不希望他出現
而是直接結束

2005-11-27 17:40:54 · update #1

請問你所謂的模組要如何新增ㄋ

2005-11-27 17:58:08 · update #2

喔喔
我知道了
原來end 跟 end sub是分開的兩樣東西
MsgBox("ooo")
MsgBox("xxx")
MsgBox("ccc")
end
end sub
是這樣的
謝謝各位大大啦

2005-11-27 18:02:55 · update #3

2 個解答

新增一個模組Module1打上
Sub Main()
MsgBox ("sss")
MsgBox ("...")
MsgBox ("ooo")
MsgBox ("xxx")
End
End Sub
移除Form1,把專案屬性的啟動物件改成 Sub Main就行了

2005-11-27 17:48:18 · answer #1 · answered by W.J.S. 7 · 0 0

private sub command1_click
msgbox "test "
END ' 加END 在你要結束程式的地方就OK啦
end sub

2005-11-27 17:28:51 · answer #2 · answered by jj 2 · 0 0

fedest.com, questions and answers