Mini Kabibi Habibi

Current Path : C:/Users/ITO/Desktop/VF9/program files/microsoft visual foxpro 9/wizards/
Upload File :
Current File : C:/Users/ITO/Desktop/VF9/program files/microsoft visual foxpro 9/wizards/_framewk.fpt

@,Template for metadata table for applications0a		ZDOC_TYPECDOC_DESCRC<DOC_EXECM>DOC_CLASSMBDOC_NEWLFDOC_OPENLGDOC_SINGLELHDOC_NOSHOWLIDOC_WRAPLJDOC_GOLKDOC_NAVLLALT_EXECMMPROPERTIESMQUSER_NOTESMU_NullFlags0Y
7Template for metadata table for applications (FPT file)@7Template for metadata table for applications (CDX file)$
������������4$$PISDELTYPEOPENNEWDOC_DESCR
`		doc_open����������?`doc_new����������?<`

doc_descr����������??b		doc_type����������"`

DELETED()����������?7Template for application-specific generated header file	* *<PATHED_PROJECTNAME>*_APP.H

*<STANDARD HEADER>*

* header file holding framework-generated project data for
* *<PATHED_PROJECTNAME>* Project

* the following is for your reference/identification --
* the application object and splash receive this information into
* their cCaption property, and this #DEFINE does not provide it:
* #DEFINE APP_NAME                "*<AppName>*"


#DEFINE APP_SUPERCLASS         "_application"

* developer can change this one
* to use a different global reference
* if desired -- a BUILD ALL/RECOMPILE
* is required afterwards to synch up
* references in generated menus and PRGs.
#DEFINE APP_GLOBAL              goApp

* This one indicates the member name of the object
* placed on "framework-enabled" forms:
#DEFINE APP_MEDIATOR_NAME       "app_mediator"

* developer can change these to a different subclass
* of APP_SUPERCLASS if desired:
#DEFINE APP_CLASSLIB            "*<PROJECTNAME>*_APP.VCX"
#DEFINE APP_CLASSNAME           "*<AppClassName>*"

* the splash class can be anything you want:
#DEFINE APP_SPLASHCLASS         "*<AppSplashClass>*"
#DEFINE APP_SPLASHCLASSLIB      "*<PROJECTNAME>*_APP.VCX"
* how long should the splash screen stay up if
* no key is pressed and if the app object initializes
* too quickly? (this figure is in seconds)
#DEFINE APP_SPLASHDELAY         3

* the following are localization strings for the wrapper program:
#DEFINE APP_CANNOT_RUN_LOC           "Application cannot run."
#DEFINE APP_ALREADY_RUNNING_LOC      "Application already running."
#DEFINE APP_WRONG_SUPERCLASS_LOC     "Sorry -- this application must instantiate "+ CHR(13)+ ;
                                     "an object that descends from "+APP_SUPERCLASS+"."

* this is a localization string for the menus:                                     
#DEFINE APP_FEATURE_NOT_AVAILABLE_LOC "Feature not available."                                     

* this one is a hook in the startup program, not
* needed by the framework:
* #DEFINE APP_INITIALIZE          *<Initialize>*

* strictly speaking the 6.0 framework does not
* need the following, but the 5.0 template apps may,
* if they are adapted for the new framework:
* #DEFINE APP_CD                  *<CD>*
* #DEFINE APP_PATH                *<PATH>*


6Template for application-specific generated CONFIG.FPW)* CONFIG.FPW for *<PATHED_PROJECTNAME>*.PJX

*<STANDARD HEADER>*

* This file should contain the settings 
* appropriate to your project
* and be added in to the project/exe
* or installed in the EXE directory

* It overrides registry settings

* You can use the -C switch or FOXPROWCFG environmental
* variables to point to a config file by name, and
* and the FOXPROSWX variable also handles -C among
* the other switches.

SCREEN = OFF
TITLE = *<AppName>*

* Change this to suit:
* TMPFILES = *<GETENV("TEMP")>*
* or set EDITWORK,SORTWORK,PROGWORK individually
* note: these should never be set in a CONFIG.FPW
* built into your EXE! See above for ways of pointing
* to a CONFIG file.

* To specify a startup program, possibly temporarily,
* on the way into your app:
_STARTUP = ""

* to eliminate load time:
_BROWSER = ""
_SPELLCHK = ""
_GENMENU = ""
_GENGRAPH = ""
_GENXTAB = ""
_COVERAGE = ""
_SCCTEXT = ""
_CONVERTER = ""
_TRANSPORTER = ""
_BUILDER = ""
_WIZARD = ""

* other special CONFIG.FPW settings you may wish to change:
* (these are the defaults)
MVCOUNT = 1025 
OUTSHOW = ON   

* Set other global settings here if you like, for example:
RESOURCE = OFF
_THROTTLE = 0

* See the application object's SetDataSessionSets() method
* for some additional settings you
* may like to use in your config file.
* The following are not the default settings, 
* (and ordinarily will be taken care of in the 
* Load of private-session forms and formsets):
TALK = OFF
MULTILOCKS = ON
EXCLUSIVE = OFF
SAFETY = OFF
7Template for application-specific project hook log file�* *<PATHED_PROJECTNAME>*_APP.TXT

*<STANDARD HEADER>*

* Projecthook log file for:
* *<PATHED_PROJECTNAME>*.PJX

* This file holds date-time stamped log entries for automated 
* alterations made to this framework-enabled project. 




 
^Template for application-object instantiating PRG, used as Main program for generated projects	�* *<PROJECTNAME>*_APP.PRG

*<STANDARD HEADER>*

* Framework-generated application startup program
* for *<PATHED_PROJECTNAME>* Project

#INCLUDE [..\*<PROJECTNAME>*_APP.H]

IF TYPE([APP_GLOBAL.Class]) = "C" AND ;
   UPPER(APP_GLOBAL.Class) == UPPER(APP_CLASSNAME)
   MESSAGEBOX(APP_ALREADY_RUNNING_LOC,48, ;
              APP_GLOBAL.cCaption )
   IF VARTYPE(APP_GLOBAL.oFrame) = "O"
      APP_GLOBAL.oFrame.Show()
   ENDIF              
   RETURN
   
ENDIF   

RELEASE APP_GLOBAL
PUBLIC  APP_GLOBAL

LOCAL lcLastSetTalk, llAppRan, lnSeconds, loSplash
LOCAL ARRAY laCheck[1]

lcLastSetTalk=SET("TALK")
loSplash = .NULL.
SET TALK OFF

#IFDEF APP_SPLASHCLASS

   IF NOT EMPTY(APP_SPLASHCLASS)
      loSplash = NEWOBJECT(APP_SPLASHCLASS, APP_SPLASHCLASSLIB)
      IF VARTYPE(loSplash) = "O"   
         lnSeconds = SECONDS()
         loSplash.Show()
      ENDIF
   ENDIF                                

#ENDIF

APP_GLOBAL = NEWOBJECT(APP_CLASSNAME, APP_CLASSLIB)

IF VARTYPE(APP_GLOBAL) = "O" ;
      AND ACLASS(laCheck,APP_GLOBAL) > 0 AND ;
      ASCAN(laCheck,UPPER(APP_SUPERCLASS)) > 0

   APP_GLOBAL.cReference =[APP_GLOBAL]
   APP_GLOBAL.cFormMediatorName = APP_MEDIATOR_NAME

   #IFDEF APP_CD
      APP_CD
   #ENDIF
      
   #IFDEF APP_PATH
      APP_PATH
   #ENDIF   
   
   #IFDEF APP_INITIALIZE
       APP_INITIALIZE
   #ENDIF
   
   IF VARTYPE(loSplash) = "O"
   
      IF SECONDS() < lnSeconds + APP_SPLASHDELAY
         =INKEY(APP_SPLASHDELAY-(SECONDS()-lnSeconds),"MH")
      ENDIF

      loSplash.Release()
      loSplash = .NULL.

   ENDIF
   
   RELEASE laCheck, loSplash, lnSeconds
           
   IF NOT APP_GLOBAL.Show()

      IF TYPE([APP_GLOBAL.Name]) = "C"
         MESSAGEBOX(APP_CANNOT_RUN_LOC,16, ;
                 APP_GLOBAL.cCaption )
         APP_GLOBAL.Release()
      ELSE
         MESSAGEBOX(APP_CANNOT_RUN_LOC,16)
      ENDIF

   ELSE
      llAppRan = .T.
   ENDIF
   
     
   IF TYPE([APP_GLOBAL.lReadEvents]) = "L"
   
      IF APP_GLOBAL.lReadEvents
         * the Release() method was not used
         * but we've somehow gotten out of READ EVENTS...
         APP_GLOBAL.Release()
      ENDIF
   ELSE
      RELEASE APP_GLOBAL
   ENDIF

ELSE

   MESSAGEBOX(APP_WRONG_SUPERCLASS_LOC,16)
   RELEASE APP_GLOBAL

ENDIF

IF lcLastSetTalk=="ON"
   SET TALK ON
ELSE
   SET TALK OFF
ENDIF

IF TYPE([APP_GLOBAL]) = "O"
   * non-read events app
   RETURN APP_GLOBAL
ELSE
   RETURN llAppRan
ENDIF   
<Template for application-specific subclasses of _FRAMEWK.VCXa0
mPLATFORMCUNIQUEIDC	
TIMESTAMPN
CLASSMCLASSLOCM!BASECLASSM%OBJNAMEM)PARENTM-PROPERTIESM1PROTECTEDM5METHODSM9OBJCODEM=OLEMAOLE2MERESERVED1MIRESERVED2MMRESERVED3MQRESERVED4MURESERVED5MYRESERVED6M]RESERVED7MaRESERVED8MeUSERMi
 COMMENT Class                WINDOWS _1D314KARI 827954929 � �  / � � COMMENT RESERVED            �� WINDOWS _1D314KAE3 827954929rf+;� COMMENT RESERVED            �� WINDOWS _1D314KA13 827954929������ COMMENT RESERVED            �� WINDOWS _1D314K9KI 827954929�th����� COMMENT RESERVED            uL WINDOWS _1D314K99Y 827954929z8,��dqV COMMENT RESERVED            A� WINDOWS _1D314K8Z3 827954929=��M]'4 COMMENT RESERVED            	� WINDOWS _1D314K8PL 827954929������ COMMENT RESERVED            �n WINDOWS _1D314K8GZ 827954929�ZK����� COMMENT RESERVED            �q WINDOWS _1D314K87U 827954929�]O,��� COMMENT RESERVED            � WINDOWS _1D314K81K 827954929�
���
�
�
�
�
 COMMENT RESERVED            q

 WINDOWS _1D314K7UY 827954929�
�	���� COMMENT RESERVED            �  WINDOWS _1D314K7OA 827954929������ COMMENT RESERVED            � WINDOWS _1D314K7H4 827954929������� COMMENT RESERVED            � WINDOWS _1D314K7AB 827954929��{����{ COMMENT RESERVED            jGTemplate for application-specific subclasses of _FRAMEWK.VCX (VCT file) � �VERSION =   3.00JArial, 0, 9, 5, 15, 12, 32, 3, 0
MS Sans Serif, 0, 9, 5, 13, 11, 11, 2, 0
	_aboutboxPixelsClass1	_aboutbox	_aboutbox�DoCreate = .T.
Name = "_aboutbox"
cmdOK.Name = "cmdOK"
imgApplication.Name = "imgApplication"
lblApplicationName.Name = "lblApplicationName"
lblCredits.Name = "lblCredits"
form_framewk.vcx_applicationPixelsClass1_application_application�Name = "_application"
cusError.Name = "cusError"
cusDataSession.Name = "cusDataSession"
cusWindowHandler.Name = "cusWindowHandler"
cusTableSort.Name = "cusTableSort"
cusTableNav.Name = "cusTableNav"
tmrRefresh.Name = "tmrRefresh"
	container_framewk.vcxpArial, 0, 9, 5, 15, 12, 32, 3, 0
Courier New, 1, 9, 7, 16, 12, 9, 4, 0
MS Sans Serif, 0, 8, 5, 13, 11, 11, 2, 0
_changepasswordPixelsClass1_changepassword_changepasswordDoCreate = .T.
Name = "_changepassword"
txtPassword.Name = "txtPassword"
lblPassword.Name = "lblPassword"
txtConfirmPassword.Name = "txtConfirmPassword"
lblConfirmPassword.Name = "lblConfirmPassword"
cmdOK.Name = "cmdOK"
cmdCancel.Name = "cmdCancel"
form_framewk.vcxqArial, 0, 9, 5, 15, 12, 32, 3, 0
Courier New, 32, 9, 7, 15, 12, 8, 3, 0
MS Sans Serif, 0, 8, 5, 13, 11, 11, 2, 0
_errorlogviewerPixelsClass1_errorlogviewer_errorlogviewer�DoCreate = .T.
Name = "_errorlogviewer"
pgfErrorLog.ErasePage = .T.
pgfErrorLog.Page1.edtListing.DefLeft = 
pgfErrorLog.Page1.edtListing.Name = "edtListing"
pgfErrorLog.Page1.Name = "Page1"
pgfErrorLog.Page2.edtUserNotes.DefLeft = 
pgfErrorLog.Page2.edtUserNotes.Name = "edtUserNotes"
pgfErrorLog.Page2.Name = "Page2"
pgfErrorLog.Name = "pgfErrorLog"
txtErrStamp.Name = "txtErrStamp"
spnNav.Name = "spnNav"
cmdBrowseErrorLog.Name = "cmdBrowseErrorLog"
app_mediator.Name = "app_mediator"
form_framewk.vcxJArial, 0, 9, 5, 15, 12, 32, 3, 0
MS Sans Serif, 0, 8, 5, 13, 11, 11, 2, 0
_favoritepickerPixelsClass1_favoritepicker_favoritepicker�DoCreate = .T.
Name = "_favoritepicker"
lstDocuments.Name = "lstDocuments"
cmdOK.Name = "cmdOK"
cmdCancel.Name = "cmdCancel"
cmdBrowse.Name = "cmdBrowse"
cmdRemove.Name = "cmdRemove"
form_framewk.vcx_mediatedsessionPixelsClass1_mediatedsession_mediatedsessionName = "_mediatedsession"
custom_framewk.vcx!Arial, 0, 9, 5, 15, 12, 32, 3, 0
_navtoolbarPixelsClass1_navtoolbar_navtoolbarLHeight = 30
Left = 0
Top = 0
Width = 233
Name = "_navtoolbar"
_separator1.Top = 3
_separator1.Left = 5
_separator1.Height = 0
_separator1.Width = 0
_separator1.Name = "_separator1"
cmdTop.Top = 3
cmdTop.Left = 5
cmdTop.Name = "cmdTop"
cmdPrev.Top = 3
cmdPrev.Left = 29
cmdPrev.Name = "cmdPrev"
cmdNext.Top = 3
cmdNext.Left = 53
cmdNext.Name = "cmdNext"
cmdBottom.Top = 3
cmdBottom.Left = 77
cmdBottom.Name = "cmdBottom"
spnGo.Left = 101
spnGo.Top = 3
spnGo.Name = "spnGo"
cmdSortUp.Top = 3
cmdSortUp.Left = 156
cmdSortUp.Name = "cmdSortUp"
cmdSortDown.Top = 3
cmdSortDown.Left = 180
cmdSortDown.Name = "cmdSortDown"
cmdFilter.Top = 3
cmdFilter.Left = 204
cmdFilter.Name = "cmdFilter"
_separator2.Top = 3
_separator2.Left = 227
_separator2.Height = 0
_separator2.Width = 0
_separator2.Name = "_separator2"
toolbar_framewk.vcxJArial, 0, 9, 5, 15, 12, 32, 3, 0
MS Sans Serif, 0, 8, 5, 13, 11, 11, 2, 0
_newopenPixelsClass1_newopen_newopen{DoCreate = .T.
Name = "_newopen"
lstDocuments.Name = "lstDocuments"
cmdOK.Name = "cmdOK"
cmdCancel.Name = "cmdCancel"
form_framewk.vcxJArial, 0, 9, 5, 15, 12, 32, 3, 0
MS Sans Serif, 0, 8, 5, 13, 11, 11, 2, 0
_optionsPixelsClass1_options_optionsjDoCreate = .T.
Name = "_options"
shpGlobalItems.Name = "shpGlobalItems"
shpDocumentItems.Name = "shpDocumentItems"
cmdApply.Name = "cmdApply"
cmdSetDefault.Name = "cmdSetDefault"
cmdResetToDefault.Name = "cmdResetToDefault"
chkConfirm.Alignment = 0
chkConfirm.Name = "chkConfirm"
chkShowTips.Alignment = 0
chkShowTips.Name = "chkShowTips"
lblHours.Name = "lblHours"
lblGlobalOptions.Name = "lblGlobalOptions"
lblDocumentOptions.Name = "lblDocumentOptions"
lblBell.Name = "lblBell"
lblTextDisplay.Name = "lblTextDisplay"
cboTextDisplayFont.Name = "cboTextDisplayFont"
opgBell.Option1.Left = 5
opgBell.Option1.Top = 3
opgBell.Option1.Name = "Option1"
opgBell.Option2.Left = 42
opgBell.Option2.Top = 3
opgBell.Option2.Name = "Option2"
opgBell.Option3.Left = 99
opgBell.Option3.Top = 3
opgBell.Option3.Name = "Option3"
opgBell.Name = "opgBell"
opgHours.Option1.Left = 5
opgHours.Option1.Top = 5
opgHours.Option1.Name = "Option1"
opgHours.Option2.Left = 39
opgHours.Option2.Top = 5
opgHours.Option2.Name = "Option2"
opgHours.Name = "opgHours"
txtBell.Name = "txtBell"
cmdPickWav.Name = "cmdPickWav"
form_framewk.vcxJArial, 0, 9, 5, 15, 12, 32, 3, 0
MS Sans Serif, 0, 8, 5, 13, 11, 11, 2, 0

_reportpickerPixelsClass1
_reportpicker
_reportpicker�DoCreate = .T.
Name = "_reportpicker"
lstDocuments.Name = "lstDocuments"
cmdOK.Name = "cmdOK"
cmdCancel.Name = "cmdCancel"
form_framewk.vcx!Arial, 0, 9, 5, 15, 12, 32, 3, 0
_splashPixelsClass1_splash_splash�DoCreate = .T.
Name = "_splash"
imgApplication.Name = "imgApplication"
lblApplicationName.Name = "lblApplicationName"
lblCredits.Name = "lblCredits"
form_framewk.vcx!Arial, 0, 9, 5, 15, 12, 32, 3, 0
_standardtoolbarPixelsClass1_standardtoolbar_standardtoolbarvHeight = 61
Left = 0
Top = 0
Width = 216
Name = "_standardtoolbar"
_separator3.Top = 3
_separator3.Left = 5
_separator3.Height = 0
_separator3.Width = 0
_separator3.Name = "_separator3"
cmdNew.Top = 3
cmdNew.Left = 5
cmdNew.Name = "cmdNew"
cmdOpen.Top = 3
cmdOpen.Left = 29
cmdOpen.Name = "cmdOpen"
cmdSave.Top = 3
cmdSave.Left = 53
cmdSave.Name = "cmdSave"
cmdRevert.Top = 3
cmdRevert.Left = 77
cmdRevert.Name = "cmdRevert"
_separator2.Top = 3
_separator2.Left = 108
_separator2.Height = 0
_separator2.Width = 0
_separator2.Name = "_separator2"
cmdPrint.Top = 3
cmdPrint.Left = 108
cmdPrint.Name = "cmdPrint"
_separator1.Top = 3
_separator1.Left = 139
_separator1.Height = 0
_separator1.Width = 0
_separator1.Name = "_separator1"
cmdCut.Top = 3
cmdCut.Left = 139
cmdCut.Name = "cmdCut"
cmdCopy.Top = 3
cmdCopy.Left = 163
cmdCopy.Name = "cmdCopy"
cmdPaste.Top = 3
cmdPaste.Left = 187
cmdPaste.Name = "cmdPaste"
_separator4.Top = 34
_separator4.Left = 5
_separator4.Height = 0
_separator4.Width = 0
_separator4.Name = "_separator4"
cmdHelp.Top = 34
cmdHelp.Left = 5
cmdHelp.Name = "cmdHelp"
toolbar_framewk.vcx!Arial, 0, 9, 5, 15, 12, 32, 3, 0
_topformPixelsClass1_topform_topform#DoCreate = .T.
Name = "_topform"
form_framewk.vcxGArial, 0, 9, 5, 15, 12, 32, 3, 0
Courier New, 1, 9, 7, 16, 12, 9, 4, 0

_userloginPixelsClass1
_userlogin
_userlogin�DoCreate = .T.
Name = "_userlogin"
txtName.Name = "txtName"
txtPassword.Name = "txtPassword"
_label1.Name = "_label1"
_label2.Name = "_label2"
form_framewk.vcxOTemplate for generated menu used as cStartupMenu in 'normal' style applications
0
NHNOBJTYPENOBJCODENNAMEMPROMPTM	COMMANDM
MESSAGEMPROCTYPENPROCEDUREMSETUPTYPENSETUPMCLEANTYPENCLEANUPM MARKC$KEYNAMEM%KEYLABELM)SKIPFORM-NAMECHANGEL1NUMITEMSN2LEVELNAMEC4
ITEMNUMC>COMMENTMALOCATIONNESCHEMENGSYSRESNIRESNAMEMJ
  122111               0 0     2 1Z1  F 7_msysmenu   0   3   377`[]   \   _msysmenu   1 1  0  2 0a1b  F15_mfile      0   4   367egf      _mfile      1 0  0  367hji      _mfile      2 0  0  367kpo   l   _mfile      3 0  0  367s      _mfile      4 0  0  367txv   u   _mfile      5 0  0  367y}{   z   _mfile      6 0  0  367~      _mfile      7 0  0  367��   �   _mfile      8 0  0  367���      _mfile      9 0  0  367��      _mfile     10 0  0  367�      _mfile     11 0  0  367���      _mfile     12 0  0  367���      _mfile     13 0  0  367�      _mfile     14 0  0  367���      _mfile     15 0  0  377���   �   _msysmenu   2 0  0  2 0�1  F13_medit      0   4   378���   ��   _medit      1 0  0  378���   ��   _medit      2 0  0  378��      _medit      3 0  0  378���   ��   _medit      4 0  0  378���   ��   _medit      5 0  0  378���   ��   _medit      6 0  0  378���      _medit      7 0  0  378��      _medit      8 0  0  378���   ��   _medit      9 0  0  378��      _medit     10 0  0  378���   ��   _medit     11 0  0  378���   ��   _medit     12 0  0  378���   ��   _medit     13 0  0  377��   �   _msysmenu   3 0  0  2 0�1�  F 5_mtools     0   4   377��      _mtools     1 0  0  2 0�1  F 4_mMacros    0   4   367��      _mMacros    1 0  0  367��      _mMacros    2 0  0  367��      _mMacros    3 0  0  367��      _mMacros    4 0  0  377�      _mtools     2 0  0  2 0�1�  F 3_mErrorLog  0   4   367��      _mErrorLog  1 0  0  367�      _mErrorLog  2 0  0  367      _mErrorLog  3 0  0  367      _mtools     3 0  0  367      _mtools     4 0  0  367	
      _mtools     5 0  0  377   
   _msysmenu   4 2  0  2 01  F11_mprog      0   4   378      _mprog      1 0  0  378      _mprog      2 0  0  378!      _mprog      3 0  0  378%"#      _mprog      4 0  0  378)&'      _mprog      5 0  0  367*      _mprog      6 0  0  367+,      _mprog      7 0  0  367-.      _mprog      8 0  0  36701      _mprog      9 0  0  3673      _mprog     10 0  0  378645      _mprog     11 0  0  377<7:   89   _msysmenu   5 0  0  2 0=1>  F 3_mFave      0   4   367ACB      _mFave      1 0  0  367EGF      _mFave      2 0  0  367I      _mFave      3 0  0  377LJ   K   _msysmenu   6 3  0  2 0M1N  F 3_mwindow    0   4   367QR      _mwindow    1 0  0  378VST      _mwindow    2 0  0  378ZW   XY   _mwindow    3 0  0  377][   \   _msysmenu   7 0  0  2 0^1_  F 3_msystem    0   4   367be   cd   _msystem    1 0  0  367f      _msystem    2 0  0  367gi      _msystem    3 0  0ZTemplate for generated menu used as cStartupMenu in 'normal' style applications (MNT file).�j!>*<STANDARD HEADER>*

#INCLUDE [..\*<PROJECTNAME>*_APP.H]

	*  none of these statements will work
* in exactly this way in a Top menu --
* we'll use the array elements

IF VERSION(2) = 0
   RELEASE PAD _msm_prog OF _MSYSMENU
   RELEASE POPUP _mprog EXTENDED
   SET SYSMENU SAVE
   SET SYSMENU TO
   SET SYSMENU TO DEFAULT
ENDIF   

* the program pad items, above, always get
* get released in runtime, but some items
* specific to application state may be
* released or disabled as you choose:
IF NOT APP_GLOBAL.lReleaseUnusedMenuItems

  IF EMPTY(APP_GLOBAL.cHelpFile)
     SET SKIP OF BAR 1 OF _msystem .T.
  ENDIF

  IF EMPTY(APP_GLOBAL.cOptionsDialogClass)
     SET SKIP OF BAR 4 OF _mtools .T.
  ENDIF

  IF EMPTY(APP_GLOBAL.cAboutBoxClass)
     SET SKIP OF BAR 3 OF _msystem .T.
  ENDIF      
  
  IF EMPTY(APP_GLOBAL.cStartupFormClass) ;
     OR NOT (APP_GLOBAL.lStartupForm)

     SET SKIP OF BAR 12 OF _mfile .T.
  ENDIF      
  
  IF NOT APP_GLOBAL.lUserPreferences
     SET SKIP OF BAR 13 OF _mfile .T.
     SET SKIP OF BAR 5 OF _mtools .T.
  ENDIF

  
ELSE

  * if you prefer

  IF EMPTY(APP_GLOBAL.cOptionsDialogClass)
     RELEASE BAR 4 OF _mtools
  ENDIF

  IF EMPTY(APP_GLOBAL.cAboutBoxClass)
     RELEASE BAR 3 OF _msystem
  ENDIF      

  IF EMPTY(APP_GLOBAL.cHelpFile)
     RELEASE BAR 1 OF _msystem
     RELEASE BAR 2 OF _msystem
  ENDIF

  IF NOT APP_GLOBAL.lUserPreferences
     RELEASE BAR 13 OF _mfile
     RELEASE BAR 14 OF _mfile
     RELEASE BAR 5 OF _mtools
  ENDIF
  
  IF EMPTY(APP_GLOBAL.cStartupFormClass) ;
     OR NOT (APP_GLOBAL.lStartupForm)

     RELEASE BAR 12 OF _mfile 
  ENDIF      
  

ENDIF

IF (NOT APP_GLOBAL.lReadEvents)
   * unlikely for a Replace-style menu unless
   * Top Form, but the following
   * isn't safe in a non-ReadEvents environment
   RELEASE BAR 1 OF _mTools
   RELEASE POPUP _mMacros
ELSE
   APP_GLOBAL.cMacroPopupName = "_mMacros"  
   APP_GLOBAL.SetMacros() && refresh to appropriately disable bar
   IF EMPTY(SET("MACKEY"))
      RELEASE BAR 1 OF _mMacros
   ENDIF   
ENDIF   


IF (NOT APP_GLOBAL.lFavorites)
  RELEASE PAD _msm_Fave OF _MSYSMENU
  RELEASE POPUP _mfave EXTENDED
  ACTI MENU _MSYSMENU NOWAIT
ELSE
  APP_GLOBAL.cFavoritePopupName = "_mFave"
  APP_GLOBAL.RefreshFavoritePopup()  
ENDIF

   	_msysmenu\<FileALT+FC"Creates, opens, saves, prints files or quits "+APP_GLOBAL.cCaption	_msm_file_mfile?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)\<New..."Creates a document"APP_GLOBAL.DoNewOpen(.T.)	\<Open..."Opens a document"APP_GLOBAL.DoNewOpen()\<CloseETYPE("_SCREEN.Activeform") # "O" OR _SCREEN.ActiveForm.ShowWindow = 2"Closes the active form"EIIF(APP_GLOBAL.QueryDataSessionUnload(),APP_GLOBAL.ReleaseForm(),.T.)\-\<SaveEMPTY(AUSED(latemp))2"Saves the editing on the current form or formset"APP_GLOBAL.DataUpdate()\<RevertEMPTY(AUSED(latemp))4"Reverts the editing on the current form or formset"APP_GLOBAL.DataRevert()\-
Prin\<t...EMPTY(AUSED(latemp))"Prints current data"APP_GLOBAL.DoTableOutput()\<Print Reports..."Picks a report"APP_GLOBAL.DoReportDialog()Pr\<int Setup....SET PRINTER TO NAME (SYS(1037))\-\<Quick Start...("Picks a form or report document to run"APP_GLOBAL.DoStartupForm()\<User Login..."Log in as a different User"`IIF(APP_GLOBAL.ReleaseForms(),IIF(APP_GLOBAL.SetCurrentUser(.T.),.T., APP_GLOBAL.Release()),.T.)\-E\<xit"Exit "+APP_GLOBAL.cCaptionAPP_GLOBAL.Release()\<EditALT+E!"Edits text or current selection"	_msm_edit_medit\<UndoCTRL+ZCtrl+Z#"Undoes the last command or action"	_med_undoRe\<doCTRL+RCtrl+R$"Repeats the last command or action"	_med_redo\-
_med_sp100Cu\<tCTRL+XCtrl+X8"Removes the selection and places it onto the Clipboard"_med_cut\<CopyCTRL+CCtrl+C)"Copies the selection onto the Clipboard"	_med_copy\<PasteCTRL+VCtrl+V&"Pastes the contents of the Clipboard"
_med_pasteCle\<ar@"Removes the selection and does not place it onto the Clipboard"
_med_clear\-
_med_sp200Se\<lect AllCTRL+ACtrl+A1"Selects all text or items in the current window"
_med_slcta\-
_med_sp300	\<Find...CTRL+FCtrl+F"Searches for specified text"	_med_findFind A\<gainCTRL+GCtrl+G"Repeats the last search"
_med_findaR\<eplace...CTRL+LCtrl+L-"Replaces specified text with different text"	_med_repl\<ToolsALT+T
_msm_tools_mtools?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)M\<acros.../"Creates, deletes, or revises a keyboard macro"_mMacros\<Record a macro KEYBOARD ("{"+SET("MACKEY")+"}")\<Clear macrosCLEAR MACROS\<Save macros as defaultAPP_GLOBAL.SetMacros(.T.)Restore \<default macrosAPP_GLOBAL.SetMacros()\<Error Logs
_mErrorLog?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)\<Display Error LogAPP_GLOBAL.DisplayErrorLog()\<Export LogAPP_GLOBAL.ExportErrorLog()\<Purge LogAPP_GLOBAL.PurgeErrorLog()\-\<Options...APP_GLOBAL.DoOptionsDialog()\<Change Password...APP_GLOBAL.DoChangePassword()	\<ProgramALT+P/"Runs, debugs, compiles, and suspends programs"	_msm_prog_mprog?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)\<Do...;"Runs a program, application, form, report, query, or menu"_mpr_do\<Cancel#"Stops running the current program"
_mpr_cancl\<Resume/"Resumes running the current suspended program"
_mpr_resum	\<Suspend("Suspends the currently running program"_mpr_suspendC\<ompile...*"Compiles the current or selected program"
_mpr_compl\-
Deb\<uggerDEBUGD\<ata Session'APP_GLOBAL.ActivateSystemWindow("View")Co\<mmand Window*APP_GLOBAL.ActivateSystemWindow("Command")\-Class \<Browser"Runs the Class Browser"_mtl_browserF\<avoritesALT+AALT+A#"Easy access to favorite documents"	_msm_fave_mFave?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)\<Add to Favorites..."Add to Favorites menu"APP_GLOBAL.DoStartupForm(.T.)\<Clear Favorites"Clear list of Favorites"APP_GLOBAL.ClearFavorites()\-\<WindowALT+W
_msm_windo_mwindow?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)	\<CascadeAPP_GLOBAL.CascadeAll()
\<Arrange All+"Arranges windows as non-overlapping tiles"
_mwi_arranC\<ycleCTRL+F1CTRL+F1
_mwi_rotat\<HelpALT+H
_msm_systm_msystem?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)\<HelpF1F1APP_GLOBAL.DoHelp()\-"\<About "+APP_GLOBAL.cCaption+"...APP_GLOBAL.DoAboutBox()QTemplate for generated menu used as cStartupMenu in 'top form' style applications
0
NHNOBJTYPENOBJCODENNAMEMPROMPTM	COMMANDM
MESSAGEMPROCTYPENPROCEDUREMSETUPTYPENSETUPMCLEANTYPENCLEANUPM MARKC$KEYNAMEM%KEYLABELM)SKIPFORM-NAMECHANGEL1NUMITEMSN2LEVELNAMEC4
ITEMNUMC>COMMENTMALOCATIONNESCHEMENGSYSRESNIRESNAMEMJ
  522111               0 0     2 1a1  F 7_msysmenu   0   3   377bc   d   _msysmenu   1 1     2 0e1f  F15_mfile      0   4   367ij      _mfile      1 0     367kl      _mfile      2 0     367mn   q   _mfile      3 0     367t      _mfile      4 0     367uv   w   _mfile      5 0     367xy   z   _mfile      6 0     367{      _mfile      7 0     367|}      _mfile      8 0     367��      _mfile      9 0     367��      _mfile     10 0     367�      _mfile     11 0     367��      _mfile     12 0     367��      _mfile     13 0     367�      _mfile     14 0     367��      _mfile     15 0     377��   �   _msysmenu   2 0     2 0�1�  F13_medit      0   4   378��   ��   _medit      1 0     378��   ��   _medit      2 0     378��      _medit      3 0     378��   ��   _medit      4 0     378��   ��   _medit      5 0     378��   ��   _medit      6 0     378��      _medit      7 0     378��      _medit      8 0     378��   ��   _medit      9 0     378��      _medit     10 0     378��   ��   _medit     11 0     378��   ��   _medit     12 0     378��   ��   _medit     13 0     377��   �   _msysmenu   3 0     2 0�1�  F 5_mtools     0   4   377�      _mtools     1 0     2 0�1  F 4_mMacros    0   4   367��      _mMacros    1 0     367��      _mMacros    2 0     367��      _mMacros    3 0     367��      _mMacros    4 0     377�      _mtools     2 0     2 0�1�  F 3_mErrorLog  0   4   367��      _mErrorLog  1 0     367��      _mErrorLog  2 0     367��      _mErrorLog  3 0     367�      _mtools     3 0     367��      _mtools     4 0     367��      _mtools     5 0     377��   �   _msysmenu   4 2     2 0�1�  F11_mprog      0   4   378��      _mprog      1 0     378��      _mprog      2 0     378��      _mprog      3 0     378��      _mprog      4 0     378��      _mprog      5 0     367�      _mprog      6 0     367��      _mprog      7 0     367      _mprog      8 0     367      _mprog      9 0     367      _mprog     10 0     378      _mprog     11 0     377	
      _msysmenu   5 0     2 0
1  F 3_mFave      0   4   367      _mFave      1 0     367      _mFave      2 0     367      _mFave      3 0     377      _msysmenu   6 3     2 01  F 3_mwindow    0   4   367       _mwindow    1 0     378!"      _mwindow    2 0     378#$   %&   _mwindow    3 0     377'(   )   _msysmenu   7 0     2 0*1+  F 3_msystem    0   4   367./   01   _msystem    1 0     3672      _msystem    2 0     36735      _msystem    3 0   \Template for generated menu used as cStartupMenu in 'top form' style applications (MNT file)'�6!:*<STANDARD HEADER>*

#INCLUDE [..\*<PROJECTNAME>*_APP.H]
*!*		a_menupops[1]="_mfile"
*!*		a_menupops[2]="_medit"
*!*		a_menupops[3]="_mtools"
*!*		a_menupops[4]="_mmacros"
*!*		a_menupops[5]="_merrorlog"
*!*		a_menupops[6]="_mprog"
*!*		a_menupops[7]="_mfave"
*!*		a_menupops[8]="_mwindow"
*!*		a_menupops[9]="_msystem"

IF VERSION(2) = 0
   RELEASE PAD _msm_prog OF (m.cMenuName)
   RELEASE POPUP (a_menupops[6]) EXTENDED
ENDIF   

* the program pad items, above, always get
* get released in runtime, but some items
* specific to application state may be
* released or disabled as you choose:
IF NOT APP_GLOBAL.lReleaseUnusedMenuItems


  IF EMPTY(APP_GLOBAL.cHelpFile)
     SET SKIP OF BAR 1 OF (a_menupops[9]) .T.
  ENDIF

  IF EMPTY(APP_GLOBAL.cOptionsDialogClass)
     SET SKIP OF BAR 4 OF (a_menupops[3]) .T.
  ENDIF

  IF EMPTY(APP_GLOBAL.cAboutBoxClass)
     SET SKIP OF BAR 3 OF (a_menupops[9]) .T.
  ENDIF      
  
  IF EMPTY(APP_GLOBAL.cStartupFormClass) ;
     OR NOT (APP_GLOBAL.lStartupForm)
     SET SKIP OF BAR 12 OF (a_menupops[1]) .T.
  ENDIF      
  
  IF NOT APP_GLOBAL.lUserPreferences
     SET SKIP OF BAR 13 OF (a_menupops[1]) .T.
     SET SKIP OF BAR 5 OF (a_menupops[3]) .T.
  ENDIF

 
ELSE

  * if you prefer

  IF EMPTY(APP_GLOBAL.cOptionsDialogClass)
     RELEASE BAR 4 OF (a_menupops[3])
  ENDIF

  IF EMPTY(APP_GLOBAL.cAboutBoxClass)
     RELEASE BAR 3 OF (a_menupops[9])
  ENDIF      

  IF EMPTY(APP_GLOBAL.cHelpFile)
     RELEASE BAR 1 OF (a_menupops[9])
     RELEASE BAR 2 OF (a_menupops[9])
  ENDIF

  IF NOT APP_GLOBAL.lUserPreferences
     RELEASE BAR 13 OF (a_menupops[1])
     RELEASE BAR 14 OF (a_menupops[1])
     RELEASE BAR 5 OF (a_menupops[3])     
  ENDIF
  
  IF EMPTY(APP_GLOBAL.cStartupFormClass) ;
     OR NOT (APP_GLOBAL.lStartupForm)
     RELEASE BAR 12 OF (a_menupops[1])
  ENDIF      

ENDIF

IF (NOT APP_GLOBAL.lReadEvents)
   * unlikely for a Replace-style menu unless
   * Top Form, but the following
   * isn't safe in a non-ReadEvents environment
   RELEASE BAR 1 OF (a_menupops[3])
   RELEASE POPUP (a_menupops[4])
ELSE
   APP_GLOBAL.cMacroPopupName = (a_menupops[4])
   APP_GLOBAL.SetMacros() && refresh to appropriately disable bar   
   IF EMPTY(SET("MACKEY"))
      RELEASE BAR 1 OF (a_menupops[4])
   ENDIF   
ENDIF   


IF (NOT APP_GLOBAL.lFavorites)
  RELEASE PAD _msm_Fave OF (m.cMenuName)
  RELEASE POPUP (a_menupops[7]) EXTENDED
  ACTI MENU (m.cMenuName) NOWAIT
ELSE
  APP_GLOBAL.cFavoritePopupName = (a_menupops[7])
  APP_GLOBAL.RefreshFavoritePopup()  
ENDIF

   	_msysmenu	_msm_file\<FileALT+F_mfile?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)\<New...APP_GLOBAL.DoNewOpen(.T.)	\<Open...APP_GLOBAL.DoNewOpen()\<CloseEIIF(APP_GLOBAL.QueryDataSessionUnload(),APP_GLOBAL.ReleaseForm(),.T.)ETYPE("_SCREEN.Activeform") # "O" OR _SCREEN.ActiveForm.ShowWindow = 2\-\<SaveAPP_GLOBAL.DataUpdate()EMPTY(AUSED(latemp))\<RevertAPP_GLOBAL.DataRevert()EMPTY(AUSED(latemp))\-
Prin\<t...APP_GLOBAL.DoTableOutput()EMPTY(AUSED(latemp))\<Print Reports...APP_GLOBAL.DoReportDialog()Pr\<int Setup....SET PRINTER TO NAME (SYS(1037))\-\<Quick Start...APP_GLOBAL.DoStartupForm()\<User Login...`IIF(APP_GLOBAL.ReleaseForms(),IIF(APP_GLOBAL.SetCurrentUser(.T.),.T., APP_GLOBAL.Release()),.T.)\-E\<xitAPP_GLOBAL.Release()	_msm_edit\<EditALT+E_medit?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)	_med_undo\<UndoCTRL+ZCtrl+Z	_med_redoRe\<doCTRL+RCtrl+R
_med_sp100\-_med_cutCu\<tCTRL+XCtrl+X	_med_copy\<CopyCTRL+CCtrl+C
_med_paste\<PasteCTRL+VCtrl+V
_med_clearCle\<ar
_med_sp200\-
_med_slctaSe\<lect AllCTRL+ACtrl+A
_med_sp300\-	_med_find	\<Find...CTRL+FCtrl+F
_med_findaFind A\<gainCTRL+GCtrl+G	_med_replR\<eplace...CTRL+LCtrl+L
_msm_tools\<ToolsALT+T_mtools?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)M\<acros..._mMacros\<Record a macro KEYBOARD ("{"+SET("MACKEY")+"}")\<Clear macrosCLEAR MACROS\<Save macros as defaultAPP_GLOBAL.SetMacros(.T.)Restore \<default macrosAPP_GLOBAL.SetMacros()\<Error Logs
_mErrorLog?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)\<Display Error LogAPP_GLOBAL.DisplayErrorLog()\<Export LogAPP_GLOBAL.ExportErrorLog()\<Purge LogAPP_GLOBAL.PurgeErrorLog()\-\<Options...APP_GLOBAL.DoOptionsDialog()\<Change Password...APP_GLOBAL.DoChangePassword()	_msm_prog	\<ProgramALT+P_mprog?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)_mpr_do\<Do...
_mpr_cancl\<Cancel
_mpr_resum\<Resume_mpr_suspend	\<Suspend
_mpr_complC\<ompile...\-
Deb\<uggerDEBUGD\<ata Session'APP_GLOBAL.ActivateSystemWindow("View")Co\<mmand Window*APP_GLOBAL.ActivateSystemWindow("Command")\-_mtl_browserClass \<Browser	_msm_faveF\<avoritesALT+AALT+A_mFave?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)\<Add to Favorites...APP_GLOBAL.DoStartupForm(.T.)\<Clear FavoritesAPP_GLOBAL.ClearFavorites()\-
_msm_windo\<WindowALT+W_mwindow?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)	\<CascadeAPP_GLOBAL.CascadeAll()
_mwi_arran
\<Arrange All
_mwi_rotatC\<ycleCTRL+F1CTRL+F1
_msm_systm\<HelpALT+H_msystem?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)\<HelpAPP_GLOBAL.DoHelp()F1F1\-"\<About "+APP_GLOBAL.cCaption+"...APP_GLOBAL.DoAboutBox()OTemplate for generated menu used as cStartupMenu in 'module' style applications�0
#HNOBJTYPENOBJCODENNAMEMPROMPTM	COMMANDM
MESSAGEMPROCTYPENPROCEDUREMSETUPTYPENSETUPMCLEANTYPENCLEANUPM MARKC$KEYNAMEM%KEYLABELM)SKIPFORM-NAMECHANGEL1NUMITEMSN2LEVELNAMEC4
ITEMNUMC>COMMENTMALOCATIONNESCHEMENGSYSRESNIRESNAMEMJ
  122111               0 2     2 1B1  F 1_MSYSMENU   0   3   377CD   EFG   _MSYSMENU   1 0     2 0I1J  F19_mApp       0   4   367MN      _mApp       1 0     367OP      _mApp       2 0     377Q      _mApp       3 0     2 0R1  F 3_mFave      0   4   367ST      _mFave      1 0     367VW      _mFave      2 0     367Y      _mFave      3 0     367Z      _mApp       4 0     367[\   _   _mApp       5 0     367bc   d   _mApp       6 0     367ef   g   _mApp       7 0     367h      _mApp       8 0     367ijl   m   _mApp       9 0     367no      _mApp      10 0     377q      _mApp      11 0     2 0r1  F 3_mAppTools  0   4   367st      _mAppTools  1 0     367vw      _mAppTools  2 0     377y      _mAppTools  3 0     2 0z1  F 3ErrorLogs   0   4   367{|      ErrorLogs   1 0     367~      ErrorLogs   2 0     367��      ErrorLogs   3 0     367�      _mApp      12 0     367��      _mApp      13 0     367��      _mApp      14 0     367�      _mApp      15 0     367��      _mApp      16 0     367��      _mApp      17 0     367�      _mApp      18 0     367��      _mApp      19 0   ZTemplate for generated menu used as cStartupMenu in 'module' style applications (MNT file)r�!_MSYSTEM>*<STANDARD HEADER>*

#INCLUDE [..\*<PROJECTNAME>*_APP.H]

�* some items specific to application state may be
* released or disabled as you choose:
IF NOT APP_GLOBAL.lReleaseUnusedMenuItems

  IF EMPTY(APP_GLOBAL.cStartupFormClass) ;
     OR NOT (APP_GLOBAL.lStartupForm)
     SET SKIP OF BAR 13 OF _mApp .T.
  ENDIF      

  IF NOT APP_GLOBAL.lUserPreferences
     SET SKIP OF BAR 14 OF _mApp .T.
     SET SKIP OF BAR 2 OF _mAppTools .T.     
  ENDIF

  IF EMPTY(APP_GLOBAL.cHelpFile)
     SET SKIP OF BAR 16 OF _mApp .T.
  ENDIF
  
  IF EMPTY(APP_GLOBAL.cAboutBoxClass)
     SET SKIP OF BAR 17 OF _mApp .T.
  ENDIF      

  IF EMPTY(APP_GLOBAL.cOptionsDialogClass)
     SET SKIP OF BAR 1 OF _mAppTools .T.
  ENDIF

ELSE

  * if you prefer
  
  * these are deliberately done
  * in reverse-bar JIC

  IF EMPTY(APP_GLOBAL.cAboutBoxClass)
     RELEASE BAR 17 OF _mApp
  ENDIF      

  IF EMPTY(APP_GLOBAL.cHelpFile)
     RELEASE BAR 16 OF _mApp
  ENDIF

  IF NOT APP_GLOBAL.lUserPreferences
     RELEASE BAR 15 OF _mApp
     RELEASE BAR 14 OF _mApp
     RELEASE BAR 2 OF _mAppTools
  ENDIF

  IF EMPTY(APP_GLOBAL.cStartupFormClass) ;
     OR NOT (APP_GLOBAL.lStartupForm)
     RELEASE BAR 13 OF _mApp
  ENDIF      
  
  
  IF EMPTY(APP_GLOBAL.cOptionsDialogClass)
     RELEASE BAR 1 OF _mAppTools
  ENDIF

ENDIF

IF (NOT APP_GLOBAL.lFavorites)
  RELEASE BAR 3 OF _mApp
  RELEASE POPUP _mfave EXTENDED
ELSE
  APP_GLOBAL.cFavoritePopupName = "_mFave"
  APP_GLOBAL.RefreshFavoritePopup()  
ENDIF

   	_MSYSMENU_MSM_APP
\<ApplicationALT+AALT+A"TYPE([APP_GLOBAL.BaseClass]) # "C"_mApp?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)\<New...APP_GLOBAL.DoNewOpen(.T.)	\<Open...APP_GLOBAL.DoNewOpen()\<Favorites_mFave\<Add to Favorites...APP_GLOBAL.DoStartupForm(.T.)\<Clear FavoritesAPP_GLOBAL.ClearFavorites()\-\-\<CloseEIIF(APP_GLOBAL.QueryDataSessionUnload(),APP_GLOBAL.ReleaseForm(),.T.)ETYPE("_SCREEN.Activeform") # "O" OR _SCREEN.ActiveForm.ShowWindow = 2\<SaveAPP_GLOBAL.DataUpdate()EMPTY(AUSED(latemp))\<RevertAPP_GLOBAL.DataRevert()EMPTY(AUSED(latemp))\-
Pr\<int...APP_GLOBAL.DoTableOutput()"Prints current data"EMPTY(AUSED(latemp))Re\<ports...APP_GLOBAL.DoReportDialog()\<Tools
_mAppTools\<Options...APP_GLOBAL.DoOptionsDialog()\<Change Password..APP_GLOBAL.DoChangePassword()\<Error Logs	ErrorLogs\<Display Error LogAPP_GLOBAL.DisplayErrorLog()\<Export LogAPP_GLOBAL.ExportErrorLog()\<Purge LogAPP_GLOBAL.PurgeErrorLog()\-\<Quick Start...APP_GLOBAL.DoStartupForm()\<User Login...`IIF(APP_GLOBAL.ReleaseForms(),IIF(APP_GLOBAL.SetCurrentUser(.T.),.T., APP_GLOBAL.Release()),.T.)\-"+APP_GLOBAL.cCaption+" \<HelpAPP_GLOBAL.DoHelp()"\<About "+APP_GLOBAL.cCaption+"...APP_GLOBAL.DoAboutBox()\-E\<xitAPP_GLOBAL.Release()ITemplate for generated menu used as cGoMenuFile (navigation context menu)�0
HNOBJTYPENOBJCODENNAMEMPROMPTM	COMMANDM
MESSAGEMPROCTYPENPROCEDUREMSETUPTYPENSETUPMCLEANTYPENCLEANUPM MARKC$KEYNAMEM%KEYLABELM)SKIPFORM-NAMECHANGEL1NUMITEMSN2LEVELNAMEC4
ITEMNUMC>COMMENTMALOCATIONNESCHEMENGSYSRESNIRESNAMEMJ
  122111               0 2     2 11  F 1_msysmenu   0   3   377      _msysmenu   1 0     2 01  F10_mGo        0   4   367       _mGo        1 0     367!"      _mGo        2 0     367#$      _mGo        3 0     367%&      _mGo        4 0     367'      _mGo        5 0     367()      _mGo        6 0     367+,      _mGo        7 0     367./      _mGo        8 0     36701      _mGo        9 0     36723      _mGo       10 0   STemplate for generated menu used as cGoMenuFile (navigation context menu), MNT file�5!_MWINDOW<*<STANDARD HEADER>*

#INCLUDE [..\*<PROJECTNAME>*_APP.H]
	_msysmenu_msm_Go\<Go9"Navigates the currently selected table, cursor, or view"ALT+GALT+G_mGo?MESSAGEBOX(APP_FEATURE_NOT_AVAILABLE_LOC,0,APP_GLOBAL.cCaption)\<TopAPP_GLOBAL.GoTop()\<BottomAPP_GLOBAL.GoBottom()\<NextAPP_GLOBAL.GoNext()
\<PreviousAPP_GLOBAL.GoPrevious()\-
\<Go to... APP_GLOBAL.ShowTableGoToDialog()\<Locate... APP_GLOBAL.ShowTableFindDialog()\<Sort AscendingAPP_GLOBAL.DoSort(,,,.F.)\<Sort DescendingAPP_GLOBAL.DoSort(,,,.T.)Set \<Filter...%APP_GLOBAL.ShowTableSetFilterDialog()2Template for header placed in all generated files q* This file is a generated, framework-enabling component
* created by APPBUILDER 
* (c) Microsoft Corporation