I use a class in my code (clstrs). It contains lots of variables in class_globals. I use this class as
dim trs as clstrs
I can only declare this in globals module and not in process_globals. I want to declare this in process_globals so that all the variables in the class will keep their values during the process life cycle, i. e. I don't want them to be initialized for each activity create/resume.
Is there a solution for my problem?
Thanks in advance
Talat Oncu
dim trs as clstrs
I can only declare this in globals module and not in process_globals. I want to declare this in process_globals so that all the variables in the class will keep their values during the process life cycle, i. e. I don't want them to be initialized for each activity create/resume.
Is there a solution for my problem?
Thanks in advance
Talat Oncu