
ABC Exe Called From Clarion Exe
Hi Jimmy!
First, when you call a Clarion EXE, it automatically runs the First
Procedure. If you don't need the Frame, you can just change the app to use
the browse procedure as your "First Procedure." See the Application
Properties screen.
If you DO need to have the Frame, because you sometimes run the ABC app
independently, then I suggest using a Command Line parameter, "/BROWSE", for
example, and coding the following in the Global Embed "Program Setup":
IF COMMAND('/BROWSE') THEN
MyABCBrowseProcedureName
RETURN
END
This will all happen before the call to the Frame.
Quote:
> I have an app using clarion template chain and I have created an ABC
> exe I want to call with EIP features.
> There should be no problem right?
> Since I want the ABC exe to not use its frame menu I would want it to
> act like calling a DLL and go straight to a browse. This browse is the
> main proc int the Exe. How do I call just the browse on entering the
> ABC Exe and close the exe on leaving the browse?
> Thanks