0

「OK」や「キャンセル」などのボタンがあるメッセージボックスを設定するには? また、ボタンに独自の名前を付けることができますか? そして、これらのボタンのソースコードを書くことはできますか?

ok.click, form1.show() and if cancel.click form5.show()
msgbox()
4

4 に答える 4

0

これはうまくいくはずです:

If (MsgBox("Your Text", MsgBoxStyle.OkCancel, "MessageBox Title") = MsgBoxResult.Ok) Then
        Form1.Show()
    Else
        form5.show()
    End If
于 2013-02-28T13:55:52.333 に答える
0

これは単純なメッセージ ボックスです。

If MessageBox.Show("some msg", "caption", MessageBoxButtons.OKCancel) = DialogResult.Cancel Then
    ' you cancel it, so i will show another message box
EndIf
于 2013-02-28T14:03:03.067 に答える
0

これを試して:

MessageBox.Show("put your text here", "here the title of you message", MessageBoxButtons.OKCancel, MessageBoxIcon.Hand)

2 番目のコンマ [,] の後にボタンの種類を入力し、最後にメッセージ ボックスに最も適していると思われるアイコンを入力できます。

よろしく

于 2013-02-28T13:52:49.090 に答える
0

You could use MessageBoxButtons enum to specify different kinds of buttons on messagebox and use DialogResult after the button is clicked to specify different actions for each type of messagebox button. Or create your own MessageBox

于 2013-02-28T13:22:42.517 に答える