Group: Forum Members
Last Active: 12 Years Ago
Posts: 127,
Visits: 1
|
Dim dlg As NTaskDialog = New NTaskDialog() dlg.PredefinedButtons = TaskDialogButtons.Yes Or TaskDialogButtons.No Or TaskDialogButtons.Cancel
How do it get the above client selection?
|
Group: Forum Members
Last Active: Last Month
Posts: 139,
Visits: 184
|
Hello JSW W., To get for example the client "Yes" selection you need to do the following: If dlg.Show() = CInt(DialogResult.Yes) Then ... EndIf Regrads,
|