Nevron Forum

Client select on PredefinedButtons

https://www.nevron.com/Forum/Topic3249.aspx

By JSW W. - Wednesday, March 17, 2010

Dim dlg As NTaskDialog = New NTaskDialog()
dlg.PredefinedButtons = TaskDialogButtons.Yes Or TaskDialogButtons.No Or TaskDialogButtons.Cancel

How do it get the above client selection?
By Angel Chorbadzhiev - Wednesday, March 17, 2010

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,