VB.Net Forms Confirmation Box
How to create a simple confirmation box in a VB.Net WinForms application. This will pop up a typical “Do You Wish To Continue ? ” Box , to which each button has a different action.
1 2 3 4 5 6 7 8 | Dim Box As MsgBoxResult = MsgBox("Are You Sure You Wish To Delete This ?",MsgBoxStyle.YesNo) If Box = MsgBoxResult.Yes Then MsgBox("Done") Else MsgBox("Not Done") End If |
One Response to “VB.Net Forms Confirmation Box”
Leave a Reply

shan on February 23rd, 2010
thanks sooooo muchh this helps me very much also this is more smarter than others availabale