transfer data between forms

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • lee123
    Contributor
    • Feb 2007
    • 556

    transfer data between forms

    how do you get information off of the first form you created and have it go to the second form such as (ordernumber, or name)
  • willakawill
    Top Contributor
    • Oct 2006
    • 1646

    #2
    Changed the title of your thread because 'hello again' will not work in your favor in the search engine.

    Comment

    • willakawill
      Top Contributor
      • Oct 2006
      • 1646

      #3
      You can either store the information in a global variable or a database or you can write the data directly to controls on the second form.

      Comment

      • TNT
        New Member
        • Feb 2007
        • 48

        #4
        Use a global variable, or use this:
        Code:
        frm2.Text = [i]whatever you want to pass to the form[/i]

        Comment

        • vijaydiwakar
          Contributor
          • Feb 2007
          • 579

          #5
          Originally posted by lee123
          how do you get information off of the first form you created and have it go to the second form such as (ordernumber, or name)
          try to use form's tag property or any global veriable

          Comment

          • lee123
            Contributor
            • Feb 2007
            • 556

            #6
            thank you I'll try both

            Comment

            Working...