Adam Posted December 31, 2003 Posted December 31, 2003 I thought something like: frmName.Show() or frmName.Load() or frmName.Open Course it won't work, and I left my Dummies book at the office. :) Quote I feel the pivitol moment of failure approaching.
*Experts* mutant Posted December 31, 2003 *Experts* Posted December 31, 2003 You need to create an instance of your form first: Dim frmName As New SomeFormType frmName.Show() Quote
Adam Posted December 31, 2003 Author Posted December 31, 2003 Dim frmSomeform As Form frmSomeform.Show() equals :( The form is created. I just want to call it up. Quote I feel the pivitol moment of failure approaching.
*Experts* mutant Posted December 31, 2003 *Experts* Posted December 31, 2003 If it is created then you would have to keep the reference to the instance of that form in a variable and then use the Show method with that variable. Quote
Adam Posted December 31, 2003 Author Posted December 31, 2003 Can you point me to some examples. I'm very new to this and I'm having to take lots of baby steps.... but it's been fun. Very late, very tired. Thanks for helping. catch everyone later. Quote I feel the pivitol moment of failure approaching.
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.