show form

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kassemn
    New Member
    • Sep 2007
    • 1

    show form

    How to show form by a form in another project using VB.net 2003
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    Hi Kassemn,

    I've moved your question to the .NET Forum.
    The .NET Articles section is reserved for "how-tos" and other helpful tips and is not meant for questions. In the future please post your questions in the .NET Forum (Blue menu at top: Forums -> .NET).

    Thanks
    -Moderator

    Comment

    • Frinavale
      Recognized Expert Expert
      • Oct 2006
      • 9749

      #3
      Originally posted by kassemn
      How to show form by a form in another project using VB.net 2003
      Could please elaborate on the problem that you are trying to solve?
      I'm not sure what you are trying to do, nor am I sure what the problem is.
      Please re-explain so that we can help you better :)

      Cheers!

      -Frinny

      Comment

      • Plater
        Recognized Expert Expert
        • Apr 2007
        • 7872

        #4
        Create an instance of your form, then show it:
        Code:
        Form1 myform= new Form1();
        myform.Show();

        Comment

        Working...