What Kind of text? are you entering html in text1? or just text and then have tags added into the second form...??

If you are just entering text like this...and nothing else special then try this

form1...
Code:
Public Variable as string

Private Sub Button_Click()
Variable = Text1.text
Form2.Show
End sub
then in form 2...
Code:
Private Sub Form_Load()
Text2.text = "<HTML>" & vbcrlf & Form1.Variable & vbcrlf & "</HTML>"
End Sub
I have a feeling that you want more than this though