Very close to being able to use the rapid debugger with my project. Ran into a little snag. I have this list object (aka collection) declared in my core code module
Public colButtons As List:colButtons.Initialize
in a routine I have this line which the compiler throws an error about an activity and declaring in "Globals" vs Process_Globals. AButton is a class with various views in it. The weird thing is that the list object was declared in code module already before, albeit the adding to the list was always done in an activity object.
colButtons.Add(AButton)
My workaround to make it complie is this line, unfortunately it forces interaction with the main activity which slows everything down again.
CallSub2(CallBackMod,"AddAButton",AButton)
all the "AddAButton" sub does is:
base.colButtons.Add(AButton)
any suggestion for a work around to not have to call back to the main activity to add this "Button" class to my list object?
EDIT: After further testing in "rapid" mode, it appears my library hangs when it "callsub" back to my main activity.
I've managed to trick the compiler to add my "AButton" to my list object by assigning the "AButton" object to a local "object" variable then adding the local "object" variable
Dim AObject As Object
AObject=AButton
colButtons.Add(AObject)