Referencing another Form

woodsrw

Newcomer
Joined
Feb 9, 2004
Messages
6
I have FormA and FormB.

FormA open, and calls FormB.

FormA remain open the entire time.

When a command button is clicked on FormB, the value of a textbox on FormA is changed to "hello".

I have looked around, and can not figure out the syntax to get this to work.


I have tried doing the following.

Dim newform as new FormA
FormA.textbox.text = "hello"

But, this opens a NEW FormA, and I want to edit the existing FormA. Does anyone know how to resolve this issue? Thank You.

-Robert
 
Back
Top