victorysshadow
Member
- Joined
- Jun 22, 2004
- Messages
- 5
- Programming Experience
- 10+
I am trying to pass information from one form to another. I can do this by creating a new instance:
dim newForm as new form2
newForm.showDialogue
And that works great when I am doing that, but the problem is... I want to pass stuff from THAT new form back to the original form. Since that original form is STILL open its not going to allow me to do the same thing shown above. I can't use public variables because I need objects on form1 to change (a listview).
Anyone?
vs
dim newForm as new form2
newForm.showDialogue
And that works great when I am doing that, but the problem is... I want to pass stuff from THAT new form back to the original form. Since that original form is STILL open its not going to allow me to do the same thing shown above. I can't use public variables because I need objects on form1 to change (a listview).
Anyone?
vs