I am using TaskDialog and its really nice and i like it instead of normal messagebox. However i noticed that Show() of the TaskDialog allow user to go back to form and do something... I mean its not blocking Form till user close TaskDialog clicking on OK or whatever. I checked and can't find instead of Show - ShowDialog that would block untill TaskDialog will be close. Is there a way to achieve that?
e.g code:
Dim dialog As New TaskDialog()
AddHandler dialog.Opened, AddressOf taskDialog_Opened
With dialog
dialog.Text = "Hello Task Dialog"
dialog.Caption = "Hello Task Dialog"
dialog.Show()
End With