Platforms to show: All Mac Windows Linux Cross-Platform

Back to TaskDialogMBS class.

Previous items

TaskDialogMBS.SelectedRadioButton as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Windows MBS Win Plugin 16.2 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The ID of the selected radio button.

(Read and Write property)

Some examples using this property:

TaskDialogMBS.Showing as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Windows MBS Win Plugin 16.2 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
Whether dialog is currently showing.

(Read and Write property)

Some examples using this property:

TaskDialogMBS.TimedOut as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Windows MBS Win Plugin 16.2 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
Whether we got a timeout.

(Read only property)

TaskDialogMBS.timeoutMS as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Windows MBS Win Plugin 16.2 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The timeout for the dialog.

In Milliseconds. The dialog closes after given time.
(Read and Write property)

TaskDialogMBS.VerificationChecked as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Windows MBS Win Plugin 16.2 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The state of the verification checkbox.
Example
dim td as new TaskDialogMBS

td.CommonButtons = td.kCommonButtonOK
td.Content = "Hello World"

'td.VerificationChecked = true
td.VerificationText = "Don't show again"

call td.ShowDialog

if td.VerificationChecked then
MsgBox "and we will not show again"
end if

Before: Indicates whether the verification checkbox in the dialog is checked when the dialog is initially displayed.
After: True if the verification checkbox was checked when the dialog was dismissed.

This is a live property. Changing it while the dialog is open will change the checkbox.
(Read and Write property)

Some examples using this property:

TaskDialogMBS.VerificationEnabled as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Windows MBS Win Plugin 16.2 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The enable state of the verification checkbox.

Can be true to enable the checkbox or false to disable.
(Read and Write property)

Some examples using this property:

TaskDialogMBS.VerificationText as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Windows MBS Win Plugin 16.2 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The string to be used to label the verification checkbox.
Example
dim td as new TaskDialogMBS

td.CommonButtons = td.kCommonButtonOK
td.Content = "Hello World"

'td.VerificationChecked = true
td.VerificationText = "Don't show again"

call td.ShowDialog

if td.VerificationChecked then
MsgBox "and we will not show again"
end if

If this parameter is empty, the verification checkbox is not displayed in the task dialog. If the VerificationEnabled is false, the checkbox is not enabled.
(Read and Write property)

Some examples using this property:

TaskDialogMBS.Width as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Windows MBS Win Plugin 16.2 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The width of the task dialog's client area, in dialog units.

If 0, the task dialog manager will calculate the ideal width.
(Read and Write property)

TaskDialogMBS.WindowTitle as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Windows MBS Win Plugin 16.2 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The string to be used for the task dialog title.

(Read and Write property)

TaskDialogMBS.Yield as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Windows MBS Win Plugin 16.2 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
Whether to yield time.

Whether the plugin should yield time to other Xojo threads while dialog is open.
(Read and Write property)

Previous items

The items on this page are in the following plugins: MBS Win Plugin.


💬 Ask a question or report a problem
The biggest plugin in space...