I need to know if the user chooses cancel when the dialog appears other than saying, if Old Selected path <> new Selected Path.
Thanks.
I need to know if the user chooses cancel when the dialog appears other than saying, if Old Selected path <> new Selected Path.
Thanks.
How to detect CANCEL with the FolderBrowserDialog
KeBugCheck
neemik
If FBD.ShowDialog = Windows.Forms.DialogResult.OK Then
Else
Label1.Text = "User aborted - no path selected"
End If
I found this in the snippet section and goes to else when cancel is selected.
Thanks.