Help

I am new to the smart device app side of VB and I have a question. The thing is that I am writting a pocket pc version of the game left right center and can not for the life of me figure out how to call a second form. I can get the second form to load and show but you can not click on anything in the form. Can someone tell me what the problem might be


Answer this question

Help

  • Pavr

    Dim frm As New Form2

    frm.Show()

    'frm.Visible.Equals(True)

    frm.NumericUpDown1.Enabled = True

    frm.Button1.Enabled = True

    frm.Label2.Enabled = True

    frm.Label3.Enabled = True

    frm.Label4.Enabled = True

    Me.Hide()



  • dninja

    How are you showing the form Can you show your code

    Dim l_frm2 As New frm2
    l_frm2.showdialog() or l_frm2.show


  • Help