Accept this challenge

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • neelam77
    New Member
    • Oct 2006
    • 2

    Accept this challenge

    In a project I declare a variable and through inputbox store the value in it entered by the user.Now I want to Use it in other project.
    Write the steps or code for this immediately I am Iin need.
  • Seith
    New Member
    • Oct 2006
    • 16

    #2
    Try being less demanding and ask for help...

    What I'd do is put the variable into a hidden text box then get the data from the text box to be called on from another project:

    Code:
    Private sub cmdDisplayMessage_click()
    MSGBOX = project1.form1.hidden_txt.text
    End Sub

    Comment

    Working...