How do you expand a form at runtime in VB.NET to display more information? -
i have form in vb.net , user able click button display form (with original form still visible).
how do this?
protected sub mybutton_click(sender object, e eventargs) _ handles mybutton.click dim mysecondform new mysecondformtype() mysecondform.show() end sub
Comments
Post a Comment