mmatsumura Posted January 20, 2004 Posted January 20, 2004 I wish to have a LinkLabel on a Windows form that will allow me to open another Windows form. All of the examples I've seen only enable me to open a Web page. Any assistance will be greatly appriciated! Quote
Leaders Iceplug Posted January 20, 2004 Leaders Posted January 20, 2004 Have you tried something like: Dim frm As Form = New Form5 frm.Show() 'or .ShowDialog() for a modal form? Quote Iceplug, USN One of my coworkers thinks that I believe that drawing bullets is the most efficient way of drawing bullets. Whatever!!! :-(
mmatsumura Posted January 20, 2004 Author Posted January 20, 2004 Iceplug, I have tried something similar but wish to open a form that exists, not a new form. The name of the form is frmAbout. Thanks for further assistance... Quote
Administrators PlausiblyDamp Posted January 20, 2004 Administrators Posted January 20, 2004 dim f as new frmAbout f.Show that do the trick? Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
mmatsumura Posted January 21, 2004 Author Posted January 21, 2004 To all that have answered... Many, many thanks since I was able to make this work! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.