Grabbing property value out of form that is no longer visible???

  • Thread starter Thread starter acool
  • Start date Start date
A

acool

I am having trouble grabbing a form (that is still in existance) but that is
not visible so that I can retrieve the appropriate property value out of it
in another form. How can I do this? What is the best way to go about it to
put it into a collection?
 
I am having trouble grabbing a form (that is still in existance) but that is
not visible so that I can retrieve the appropriate property value out of it
in another form. How can I do this? What is the best way to go about it to
put it into a collection?

You don't say what kind of trouble you are having. Are you getting an
error message? Can you describe the sysmptoms in more detail?

If you have a reference to the form you should be able to get any property
value of the form:

For Example:

Dim MyInt as Integer
MyInt = frm1.intProperty
 
Back
Top