Visual Basic > Visual Basic Forums > Visual Basic General > My form3.vb isnt displaying
Ask a questionAsk a question
 

AnswerMy form3.vb isnt displaying

  • Friday, October 30, 2009 12:18 PMNazar-554 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    I learning visual basic. I created an first working project and my form3 dont displaying after build. I call it with specifided button but it dosent show. Other forms are working.
    Please help me

Answers

  • Friday, October 30, 2009 2:44 PMMalange Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer

    I learning visual basic. I created an first working project and my form3 dont displaying after build. I call it with specifided button but it dosent show. Other forms are working.
    Please help me


    for you to call your form3, do it:

    Dim Form3 As New Form3
    Form3.Show()

    Make sure that your form3 is really named form3, if your cahnge the name you have to use the new nname.

    Don't judge me, just Upgrade me. Thanks!

All Replies

  • Friday, October 30, 2009 12:24 PMGanesh Ranganathan - Bangalore, India Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Show your code. How are you calling Form3 and which is the startup object in the project?
    Ganesh Ranganathan
    [Please mark the post as answer if it answers your question]
    blog.ganeshzone.net
  • Friday, October 30, 2009 2:44 PMMalange Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer

    I learning visual basic. I created an first working project and my form3 dont displaying after build. I call it with specifided button but it dosent show. Other forms are working.
    Please help me


    for you to call your form3, do it:

    Dim Form3 As New Form3
    Form3.Show()

    Make sure that your form3 is really named form3, if your cahnge the name you have to use the new nname.

    Don't judge me, just Upgrade me. Thanks!
  • Wednesday, November 04, 2009 7:41 AMNazar-554 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Thanks, its all working now.