You can create public variables and put the data in them, like this

Form1 Code
VB Code:
  1. Private Sub Command1_Click()
  2.  
  3. strName = Text1.Text
  4. Form2.Show
  5.  
  6. End Sub
  7.  
  8. Private Sub Form_Load()
  9.  
  10. Text1.Text = "Enter your name.."
  11. Text1.SelStart = 0
  12. Text1.SelLength = Len(Text1.Text)
  13.  
  14. End Sub
In a module
VB Code:
  1. Public strName As String
Form2 code
VB Code:
  1. Private Sub Form_Load()
  2.  
  3. Label1.Caption = "Your name is " & strName
  4.  
  5. End Sub