0
我想顯示一個msgbox,其中包含由組合框提供的信息。具體來說,如果組合框包含「警告」,我希望msgbox顯示警告圖標。如何使用visual basic 2010 express中的組合框更改msgbox上的按鈕?
基本上我需要知道如何將組合框的輸入放入msgbox中,而不必使它具有MsgBoxStyle.Critical
或類似的東西。
我想會的工作:
Private Sub Button1_Click(ByVal sender As system.object, ByVal e As System.EventArgs) Handles Button1.Click
If ComboBox1.SelectedItem = "Warning" Then
ComboOutput = Msgboxstyle.critical
希望我的問題是清楚的。
你應該用vb而不是vbscript來標記你的問題。並編輯:標記您的代碼並點擊'{}' – LotPings
爲什麼沒有工作?什麼是ComboOutput聲明? MessageBox.Show代碼在哪裏? – LarsTech
'Dim ComboOutput as MessageBoxIcon' then'ComboOutput = MessageBoxIcon.Warning' inside your if statement? –