S
S4
How can I preserve variables for a MDI session?
Thanks
Thanks
S4 said:How can I preserve variables for a MDI session?
S4 said:If I declare the Public variable in a module, that variable would be
accessable from the MDI & Child forms. If I have more than 1 MDI
Parent open at the same time then the variables would be shared and
that is BAD. I need the variables in each MDI Parent/Child sessions
distinct from each other.
S4 said:My app is a Client/Server Collections system is as follows:
1. The user logs in and gets a list of people to call. When they
select a person, I have a MDI parent open and the MDI parent has
various MDI children options.
2. While the first MDI Parent is open, the user has the option to
bring up another person, thereby opening another MDI Parent/Child
forms.
The issue is, whats the best way to maintain the inegrity of
variables within each MDI session. Right now I use Public variables
in a module and that of course does not keep varaible distinct
between MDI Parents.