I have a map called ResultsMap on my main app main window. So I have a class (clsTest) that opens another window called test.. and I'm passing the ResultsMap through the Test.Initialize(ResultsMap) sub.
on sub Initialize(rMap as object)
I load the Global variable LoadedMap as Map
LoadedMap = rMap
So the issue is if I change/update items in the LoadedMap for testing purpose in the test window.. it changes the ResultsMap on the main app/window.
How do I keep it from changing items on ResultsMap on main windows if I change it on the test window?
on sub Initialize(rMap as object)
I load the Global variable LoadedMap as Map
LoadedMap = rMap
So the issue is if I change/update items in the LoadedMap for testing purpose in the test window.. it changes the ResultsMap on the main app/window.
How do I keep it from changing items on ResultsMap on main windows if I change it on the test window?