I know how to pass a single text from one form to another form
1- declare a public variable in the general part of the form like this
public varaiableName as String
2- in the form_load() write
variableName=text1.text
3- you can access this variable from any other form using the form name
lets say you have form2 and you want to pass text1.text which is in form1 to form2 which has a text feild (text2)
you can do that like this:-
text2.text=form1.variableName.
This helps in copying a single text.But I need to display all data from form2 in form1 using a listbox.
I am new to VB6.How do i do it???pl help...