There are many code tag examples here on the forum, such as:
https://www.b4x.com/android/forum/threads/how-to-format-code-with-code-tags.51218/
Did you change your initialize event to match your declared procedure as I suggested? As your class was coded, that line would never be called because "DmDoEvent_DmDoEvent" does not exist in your target activity.
And I'm not sure breakpoints on comment lines will actually be executed. Try adding
instead of a breakpoint.
Additionally, you really only need CallSub as you are not supplying any parameter. Also, generally speaking, unless you need to wait for a return value from the method you are calling you should use the various CallSubDelayed methods in lieu of the CallSub methods.