/* START.PRG Author: Ken Mayer Date : November 8, 1999 Modified: Ocotber 2, 2013 modified: July 14, 2019 ARDF Championships 2019 project START program This program is used to start the ARDF2019 application. There is a reference to another .CC, which is the genericMDIApp.CC file -- this contains the generic application object, and below we subclass it ... The idea is that you have a lot of "things" that you always do for any application that is an MDI app. You create one object that handles all of that, and then you subclass that for the specifics for an application, as each is at least slightly different. */ local app set talk off set procedure to GenericMDIApp.cc additive app = new ARDF2019App() app.open() return class ARDF2019App of GenericMDIApp // set any specific code for the subclassed // MDI application here: this.FrameWinText = "dBASE Plus ARDF2019 Project" // note this is not the file name -- the // SETUP program must execute "set procedure ..." that // will open the file "ARDF2019.mnu" ... the class // will be available from that point on. This is // the classname of the menu: this.MenuClassName = "ARDF2019" endclass