How to Automate Calls to ADDICON.APP

ID: Q114486

2.50 2.50a 2.50b 2.60 WINDOWS kbprg

The information in this article applies to:

If you are repeatedly calling ADDICON.APP (a FoxPro application that adds an icon to a FoxPro .EXE file), you may want to automate the calling process. Since ADDICON.APP has no PARAMETER statement, you cannot pass parameters to the application. Instead, you can stuff the keyboard buffer with the appropriate information and then call ADDICON.APP.

The following code demonstrates this process. The name of the .EXE file does not matter.

   *** Begin Code Here ***

   exe="C:\MYAPP\MYAPP.EXE"  && This is your EXE name and location
   icon="C:\MYAPP\MYICON.ICO"  && This is your ICON name and location
   KEYBOARD exe + CHR(13)
   KEYBOARD icon + CHR(13)
   DO ADDICON.APP

   *** End Code Here ***

NOTE: If either the .EXE file or the icon information is invalid, the OK button in ADDICON.APP will be disabled (dimmed).

Additional reference words: FoxWin 2.50 2.50a 2.50b 2.60 passing icon KBCategory: kbprg KBSubcategory: FxtoolGeneral

Keywords          : FxtoolGeneral 
Version           : 2.50 2.50a 2.50b 2.60
Platform          : WINDOWS

Last Reviewed: May 1, 1996