You can't without having a form reference to the other form.
This is not the way you should handle access. What you want is access to the value. If a value is of interest in two form, either you pass a value on to the second form via DO FORM... WITH parameter and receive the value in the second form INIT in LPARAMETER tPassedInValue or you store values into tables and read them in the other form.
Form communication by accessing other forms control values is a sign of a bad application design. The form will depend on each other this way, this is not what you should do. Forms are normally closable independant of each other and so code readiong from another form would fail if that's closed. That's just one of the problems you'll be facing. If the two forms really belong to each other and depend on each other, integrate all the controls in one form, or use a pageframe and use it's pages to have more space.
Bye, Olaf.