lothos12345 Posted May 24, 2005 Posted May 24, 2005 I have created a VB.NET application with a form that I am using as an aboutbox. Is there a way in VB.NET to make a vb form modal? And if so how? Any help is greatly appreciated Quote
Administrators PlausiblyDamp Posted May 24, 2005 Administrators Posted May 24, 2005 When you display the form use .ShowDialog rather than .Show e.g. Dim f as new AboutForm() 'assume that is the name of your form f.ShowDialog() Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
lothos12345 Posted May 24, 2005 Author Posted May 24, 2005 Thanks Thanks for your help, it works. 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.