-
Is there a way where I can make a variable visible to some procedures while making it invisible to some ?
e.g. three procedures
proc 1
proc2
proc3
and variable x
proc1 and proc2 can 'see' (i.e. modify the contents, read it etc) it but not proc3
Thanks.
-
Define x as Private in a form and place proc1 and proc2 in the same form. Put proc3 in a diferent form or module.
------------------
Marty
COGITO EGGO SUM
I think; therefore I am a waffle.
[This message has been edited by MartinLiss (edited 01-30-2000).]