Results 1 to 3 of 3

Thread: What am I doing wrong here:

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Aug 2000
    Posts
    1,539
    what you want to do is not use "Form"
    but use the actually class name

    Code:
    frmOptions frmMyOptions = new frmOptions();
    frmMyOptions.show();
    
    frmAbout frmMyAbout= new frmAbout();
    frmMyAbout.show();

  2. #2
    hellswraith
    Guest
    That's it huh... Thanks...

    It is fun, and frustrating, switching to C# from VB6!

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Aug 2000
    Posts
    1,539
    Originally posted by hellswraith
    That's it huh... Thanks...

    It is fun, and frustrating, switching to C# from VB6!
    yep it is
    make sure you wear a hat when you program, so you dont pull out all your hair

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width