How to switch between form in runtime

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • yusufjammy
    New Member
    • Jan 2010
    • 39

    How to switch between form in runtime

    How to switch between form in runtime
  • tlhintoq
    Recognized Expert Specialist
    • Mar 2008
    • 3532

    #2
    What does this mean? You need to explain your situation and problem better.

    Comment

    • yusufjammy
      New Member
      • Jan 2010
      • 39

      #3
      I have two forms when i debug first form opens and at that i can't access second form without closing
      so i asked how to access between form in running time

      Comment

      • Frinavale
        Recognized Expert Expert
        • Oct 2006
        • 9749

        #4
        Add a button to Form1 that opens Form2?

        -Frinny

        Comment

        • tlhintoq
          Recognized Expert Specialist
          • Mar 2008
          • 3532

          #5
          Originally posted by Frinny
          Add a button to Form1 that opens Form2?
          That was what I was going to say...

          I also commonly put in a "diagnostic " menu option for all those types of choices. The diagnostic menu is only visible if the PC logged in use is my log in, that way it doesn't show on the client PC, but if I absolutely need it I can make a user for myself during on-site installation, do what I need to, then delete the user.

          Comment

          • ThatThatGuy
            Recognized Expert Contributor
            • Jul 2009
            • 453

            #6
            as Frinny said....

            Add a button in form 1 that opens the child form or a dialog form..with code something like this....

            Form2.Show()

            Comment

            Working...