スタイルとボタンスタイルのMsgBox()
両方を備えたを作成しようとしています。私がこれまでに試したことはこれです:MsgBoxStyle.Critical
MsgBoxStyle.RetryCancel
Private Sub DoSomething()
Dim Answer as MsgBoxResult
Answer = MsgBox("Error", MsgBoxStyle.RetryCancel & MsgBoxStyle.Critical, _
"Some sort of error.")
If Answer = MsgBoxResult.Retry Then
'REM: Try code again
Elseif Answer = MsgBoxResult.Cancel Then
Exit Sub
End If
End Sub
ボタンは現在次のようになっています。
Critical
メッセージボックスにアイコンはありません。
これどうやってするの?