vb.net - Make a form that behaves like a message box in vb 2010 -
my app based on visual basic 2010/2012 (all codes same both languages). want open registration form above parent form such responding registration form becomes necessary user message box. can suggest me code. , please don't suggest complex one. irritates. :)
thanks in advance.
open registration form using showdialog()
dim f frmregistration = new frmregistration() f.showdialog()
the showdialog method used display modal dialog box. modal dialog box blocks execution of code following call until dialog box closed.
Comments
Post a Comment