47 references to MsgBoxStyle
Microsoft.VisualBasic (1)
Microsoft.VisualBasic.cs (1)
64
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(Microsoft.VisualBasic.
MsgBoxStyle
))]
Microsoft.VisualBasic.Core (40)
Microsoft\VisualBasic\Constants.vb (38)
118
Public Const vbOKOnly As
MsgBoxStyle
=
MsgBoxStyle
.OkOnly
119
Public Const vbOKCancel As
MsgBoxStyle
=
MsgBoxStyle
.OkCancel
120
Public Const vbAbortRetryIgnore As
MsgBoxStyle
=
MsgBoxStyle
.AbortRetryIgnore
121
Public Const vbYesNoCancel As
MsgBoxStyle
=
MsgBoxStyle
.YesNoCancel
122
Public Const vbYesNo As
MsgBoxStyle
=
MsgBoxStyle
.YesNo
123
Public Const vbRetryCancel As
MsgBoxStyle
=
MsgBoxStyle
.RetryCancel
124
Public Const vbCritical As
MsgBoxStyle
=
MsgBoxStyle
.Critical
125
Public Const vbQuestion As
MsgBoxStyle
=
MsgBoxStyle
.Question
126
Public Const vbExclamation As
MsgBoxStyle
=
MsgBoxStyle
.Exclamation
127
Public Const vbInformation As
MsgBoxStyle
=
MsgBoxStyle
.Information
128
Public Const vbDefaultButton1 As
MsgBoxStyle
=
MsgBoxStyle
.DefaultButton1
129
Public Const vbDefaultButton2 As
MsgBoxStyle
=
MsgBoxStyle
.DefaultButton2
130
Public Const vbDefaultButton3 As
MsgBoxStyle
=
MsgBoxStyle
.DefaultButton3
131
Public Const vbApplicationModal As
MsgBoxStyle
=
MsgBoxStyle
.ApplicationModal
132
Public Const vbSystemModal As
MsgBoxStyle
=
MsgBoxStyle
.SystemModal
133
Public Const vbMsgBoxHelp As
MsgBoxStyle
=
MsgBoxStyle
.MsgBoxHelp
134
Public Const vbMsgBoxRight As
MsgBoxStyle
=
MsgBoxStyle
.MsgBoxRight
135
Public Const vbMsgBoxRtlReading As
MsgBoxStyle
=
MsgBoxStyle
.MsgBoxRtlReading
136
Public Const vbMsgBoxSetForeground As
MsgBoxStyle
=
MsgBoxStyle
.MsgBoxSetForeground
Microsoft\VisualBasic\Interaction.vb (2)
133
Public Function MsgBox(ByVal Prompt As Object, Optional ByVal Buttons As
MsgBoxStyle
=
MsgBoxStyle
.OkOnly, Optional ByVal Title As Object = Nothing) As MsgBoxResult
Microsoft.VisualBasic.Forms (5)
Microsoft\VisualBasic\Interaction.vb (5)
237
Public Function MsgBox(Prompt As Object, Buttons As
MsgBoxStyle
, Title As Object) As MsgBoxResult
253
If ((Buttons And &HFI) >
MsgBoxStyle
.RetryCancel) OrElse ((Buttons And &HF0I) >
MsgBoxStyle
.Information) _
254
OrElse ((Buttons And &HF00I) >
MsgBoxStyle
.DefaultButton3) Then
255
Buttons =
MsgBoxStyle
.OkOnly
VisualBasicRuntimeTest (1)
Program.cs (1)
76
Interaction.MsgBox(Prompt: "Message", Buttons:
MsgBoxStyle
.OkCancel, Title: "Title");