DroidDB Tip of the Month
DroidDB® Tip for October 2020
Running a Form From a Different DroidDB Application
A DroidDB macro can easily run another form in the currently running application (MainApplication) simply by doing a RUN FORM step. But what about running a form in a different application (SubApplication)? That can be done also.
To do this, create a two step macro in MainApplication that does this:
    Step 1: ASSIGN   Value = 'SubApplication'   Arg = @var(0)
    Step 2: RUN EXTERNAL   Command = com.syware.droiddb   Arg = @var(0)