If the data on the form is in a Visualbasic application, an reference of excel must inserted in the application.
Then you must call the prcedure Applicaion.Run of your excelinstance.
dim lvo_Excel as new Excel.Application
call lvo_Excel.run(StartNewWindow, Name.text, Adress.text, Age.text)
In the makro, you have to open the new form. The best way to do this ist to open the form by a procedure written by yourself, where you can give the data as parameters.
public Sub StartNewWindow(Name as string, Adress as String, Age as string)
call NewForm.ShowMe(Name, Adress, Age)
end sub
Public Sub SowMe(Name as string, Adress as string, Age as string)
Name.text=Name
Adress.text=Adress
Age.text=age
NewForm.Show
end sub
cu Kostarsus