Manage Your Applications 

This article may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. To maintain the flow of the article, we've left these URLs in the text, but disabled the links.

Manage Your Applications

Doug Hennig

This month, Doug Hennig presents a simple yet useful tool and discusses several reusable techniques he made use of during its design.

If you’re like me, your hard drive (or your server’s hard drive) is littered with project directories: finished applications, in-progress client work, and other files. Managing and switching among all these directories can be a drag ("Was that project in T:\Apps\Clients\ACMERentals\SalesApp or F:\Projects\Current\SalesApp?").

&#9;Recently, I had to do some remedial work on some FoxPro 2.6 applications (I bet we’ve all been doing some of that in the past year or so <g>), and I was reacquainted with an old friend: an application manager I’d written years ago and forgotten about. It installed in the FoxPro system menu and was a single keystroke away. This application manager was very simple: It listed, by a descriptive name, each application I’d registered with it, and it had functions to select an application, add or edit information about an application, or remove an application from the list. When you selected an application, the application manager made that application’s directory the current one and automatically opened the project file. Switching between applications was a piece of cake: Ctrl-L (to invoke the application manager), End (to highlight the last application in the list, for example), and Enter (to make that application’s directory the current one and open its project file).

&#9;Other developers take similar approaches that are implemented a little differently. For example, FoxTalk editor Whil Hentzen adds a new pad to the end of the VFP system menu that lists all of his projects as items in the menu.

&#9;Once I started using my FoxPro 2.6 application manager again, I just had to use something similar in VFP. So, this month’s article is about my shiny new application manager. "That sounds like kind of a simple topic," you might be thinking. Perhaps, but it’s a useful tool, and we’ll encounter some interesting and helpful techniques along the way.

The application manager table and form

Figure 1 shows the application manager form when it’s running. It has a list of applications registered with the manager and buttons to select, add, edit, and remove an application. Double-clicking or pressing Enter in the list acts like clicking on the Select button.

&#9;Applications are registered with the manager by adding records to APPMGR.DBF. This simple table has two fields: NAME, the descriptive name of the application; and PROJECT, the path and name of the project file for the application.

&#9;APPMGR.SCX is the application manager form. Its Load method checks for the existence of APPMGR.DBF, then creates it if necessary before opening it.

  

&#9;How do we know where to look for APPMGR.DBF? We expect it’s in the same directory as APPMGR.APP, so we can use SYS(16) to give us the name of the currently executing method and the file (including path) it’s in. In this case, we’ll get "PROCEDURE FRMAPPMGR.LOAD <your path>APPMGR.SCT." So, to get the path, we can’t just use JUSTPATH(), because that would give us "PROCEDURE FRMAPPMGR.LOAD <your path>." Instead, we’ll use JUSTPATH() on everything after the second space ("<your path>APPMGR.SCT"), and use ADDBS() to ensure there’s a trailing backslash.

&#9;The Init method calls the custom GetApps method, which performs a SQL SELECT from APPMGR.DBF into the aApps array property of the form. The lstApps list box on the form has this array as its RowSource, so it lists the application descriptions.

&#9;The DblClick method of the list box and Click method of the Select button both call Thisform.SelectApp. This method tries to change the current directory to the one containing the project file for the selected application, then open the project. It tries to handle potential problems, such as the directory not existing or the project file not found. For example, if the directory exists but the project file doesn’t, this method looks in the directory to see if there are any project files. If there are no project files, it gives an error message. If there’s exactly one, it opens that one (on the assumption that the project file was renamed after it was registered with the application manager). If there are multiple project files, an Open File dialog box is presented, allowing you to pick the project file to open.

&#9;The Click method of the Remove button calls Thisform.RemoveApp, which simply deletes the record for the selected application and calls GetApps again to refresh the array and list box.

&#9;The Click methods of the Add and Edit buttons both call Thisform.EditApp, Add passing it .T. to indicate that we’re adding rather than editing. EditApp runs a form called EDITAPP.SCX to get the description of the application and its project file. However, notice that we’ll need three return values from EDITAPP.SCX: the description, the project, and whether the user chose OK or Cancel. Because there can only be one return value, how do we handle this? My preferred mechanism is to use a parameter object, one whose sole purpose is to be moved between methods with a "package" of parameters in its properties. These parameters are two-way; either the caller or the method being called can examine or change them.

&#9;Because both the caller and the method being called must know the names of the properties in the parameter object, you could create a parameter-object class for this use. However, if you use this technique a lot, you’d quickly find yourself creating a lot of these classes. Being a lazy, er, efficient programmer, I prefer to use a single generic class (SFParameter in SFCTRLS.VCX) for this. This class has a This_Access method that automatically fires whenever anything tries to access a property of the object. The code for that method is as follows:

  

&#9;This code does something pretty cool: If the property being accessed doesn’t exist, it’s created. This means that even though this object doesn’t have, for example, a cMessage property, we can do the following:

  

In other words, this class exposes a variable interface; it looks like anything anyone wants it to!

&#9;Okay, back to the EditApp method. The first task is to create an SFParameter object and fill its (created on the fly) properties with either the description and project file name for the selected application or empty values if we’re adding an application. Next, if we’re editing an application, we position the APPMGR table to the record for the application; this allows EDITAPP.SCX to ensure we don’t enter a duplicate record. Then we call EDITAPP.SCX, passing it the parameter object. Upon return, we do one of two things. If the user chose Cancel, we do nothing; if the user chose OK, we create or update the record in APPMGR and call GetApps to refresh the application array and list box. In the case of adding an application, we also ensure the new application is highlighted in the list box.

  

&#9;EDITAPP.SCX is a simple form: It has only a couple of text boxes, so you can enter the application description and project filename. Its Init method accepts the parameter object passed in and stores a reference to it in This.oProperties. The Click method of the OK button (which is an instance of SFOKButton in SFBUTTON.VCX, thus giving it a standard appearance) puts the description and project filename into the cAppName and cProject properties of the parameter object; sets its lSaved property to .T., so the EditApp method will know the user chose OK; and then releases the form. There’s no code in the Cancel button, since it’s an instance of SFCancelButton (also in SFBUTTON.VCX), which has Thisform.Release() in its Click method.

&#9;One useful feature of EDITAPP.SCX is a button that displays an Open File dialog box (using GETFILE()) so the user can select a file. This button is an instance of SFGetFile (in SFBUTTON.VCX). Rather than having to remember all of the parameters for GETFILE() and code what to do after the user selects a file, you simply drop this class on a form and set a few properties. The cExtensions, cText, cOpenButton, nButtonType, and cCaption properties represent the appropriate parameters for GETFILE(); cResult contains the name of the location into which you wish to store the filename the user selected; and cAfterDone contains the name of a method or function to execute after the file dialog box is closed. In the case of the instance used in EDITAPP.SCX, cExtensions contains "PJX" (because we want to select only project files), cResult contains "Thisform.txtProject.Value" (because that’s where the filename should be placed), and cAfterDone contains "Thisform.RefreshForm()" (which, while refreshing the form, will enable the OK button if the application name was also entered).

Main program

APPMGR.PRG is the main program for the application manager APP file. It consists of a main routine and a few subroutines. The purpose of the main routine is twofold: to install the application manager in the VFP system menu, and to run the application manager (I prefer to have an app be self-contained rather than having the installation and execution code in separate places). Which of these tasks is performed depends on how the program is called. If no parameters are passed, or if "INSTALL" is passed (in other words, you used DO APPMGR.APP or DO APPMGR.APP WITH "INSTALL"), this routine will call the InstallAppMgr subroutine to install the application manager in the menu. If "RUN" is passed (which is what happens when you choose "Application Manager" from the menu, as we shall soon see), the RunAppMgr subroutine is called to run APPMGR.SCX. Here’s the code for the main routine:

  

&#9;Notice that this routine can accept two parameters: the "action" ("RUN," "INSTALL," or nothing, which means "INSTALL") and the name of the menu popup into which to install the application manager. As we’ll see in a moment, the default popup is _MSM_TOOLS, the popup for the Tools menu, but you can pass the name of another popup if you want it installed under a different menu item. Note that it must be the popup name, not the prompt that appears in the menu; see "System Menu Names" in the VFP Help file for a list of the names. There’s another good reason for passing the popup, even _MSM_TOOLS, as I’ll discuss shortly.

&#9;The RunAppMgr subroutine, called when "RUN" is passed to APPMGR.APP, is very simple: It consists solely of DO FORM APPMGR. I could have placed this code directly into the main routine rather than calling a subroutine, but this approach is more modular.

&#9;The main routine calls InstallAppMgr to add the application manager to the system menu. This routine defines a couple of constants that specify the prompt to appear in the menu (including the hot key for it) and the popup to install in if one isn’t specified (_MSM_TOOLS). The first task of this routine is to determine in which directory this program is running. We need it so we can hard-code the path to find APPMGR.APP into the menu; after all, we don’t want to have the directory in the VFP path, and it certainly won’t be in the current directory. This uses the same technique involving SYS(16) I discussed earlier.

  

&#9;The next thing to do is to see whether an item for the application manager has already been added to the menu. This might happen if, for example, you run this program more than once. We wouldn’t want to have two items for the application manager in the menu, so if we find one, we’ll just reuse it. We’ll use CNTBAR() to get the number of bars in the popup, then step backwards through them. Since the application manager item is added at the bottom of the menu, this is faster than starting at the top and working down. GETBAR() gives us the number of a bar in a menu based on its position, and PRMBAR() gives us the prompt of the specified bar. Since PRMBAR() gives us the prompt without any hot key characters (\<), we’ll compare the prompt against the desired prompt stripped of these characters.

  

&#9;If we didn’t find the application manager in the menu, we’ll add a separator line and a new bar at the end of the menu. We’ll then define what to do when the item is chosen. Notice that the directory is hard-coded into the menu using macro expansion; this is necessary because we can’t use the lcDirectory variable when the menu item is chosen, since that variable won’t exist. We also use LOCFILE() if for some reason VFP can’t find APPMGR.APP where it was originally located. APPMGR.APP will be passed "RUN," so the main routine in APPMGR.PRG knows to run the application manager rather than install it.

  

&#9;Notice something interesting at the end of this code: If no popup name is specified, we use SET SYSMENU SAVE to ensure that SET SYSMENU TO DEFAULT doesn’t wipe out the application manager item in the menu. However, we don’t do this if a popup name is passed as a parameter. The reason for doing this is something Toni Feltman of F1 Technologies pointed out to me: If you use more than one SET SYSMENU SAVE, you vastly increase your chance of getting a "menu manager inconsistency error" (which terminates VFP faster than you can say "GPF"). So, if you want to add several items to your VFP system menu, it’s best to leave the SET SYSMENU SAVE command until after you’ve added them all. Although I don’t like to mention products I’ve developed in my articles, a feature I recently added to Stonefield Database Toolkit (SDT) is pertinent here: SDT.APP (which adds two items to the Tools menu) accepts the "action" and popup name parameters using almost the same code as APPMGR.PRG (in fact, I shoplifted the code for APPMGR.PRG from SDT <s>). So, if you want to add both the application manager and SDT to your system menu, here’s the best way to do that:

  

This defers SET SYSMENU SAVE until all the custom items have been added to the menu. An example of where you might do this is in some program automatically executed when you start VFP (for example, I have _STARTUP = "VFPSTART.PRG" in my CONFIG.FPW and have code I want executed every time VFP starts in this PRG).

Conclusion

Although this is a simple tool, I find myself using it at least a dozen times a day (am I the only one who’s usually at about four levels of interrupt deep at any one time <g>?), so it saves me lots of time trying to remember the exact name of a directory, typing it correctly, and then remembering (and typing correctly) the name of the project file to open. In addition to a useful tool, I hope you also picked up a few useful techniques.

Doug Hennig is a partner with Stonefield Systems Group Inc. in Regina, Saskatchewan, Canada. He’s the author or co-author of Stonefield’s add-on tools for FoxPro developers, including Stonefield Database Toolkit, Stonefield Query, and Stonefield Reports. He’s also the author of The Visual FoxPro Data Dictionary in Pinnacle Publishing’s The Pros Talk Visual FoxPro series. Doug has spoken at the 1997, 1998, and 1999 Microsoft FoxPro Developers Conferences (DevCon) as well as user groups and regional conferences all over North America. He’s a Microsoft Most Valuable Professional (MVP) and Microsoft Certified Professional (MCP). dhennig@stonefield.com.

To find out more about Fox Talk and Pinnacle Publishing, visit their website at http://www.pinpub.com/html/main.isx?sub=57

Note: This is not a Microsoft Corporation website. Microsoft is not responsible for its content.

This article is reproduced from the April 2000 issue of Fox Talk. Copyright 2000, by Pinnacle Publishing, Inc., unless otherwise noted. All rights are reserved. Fox Talk is an independently produced publication of Pinnacle Publishing, Inc. No part of this article may be used or reproduced in any fashion (except in brief quotations used in critical articles and reviews) without prior consent of Pinnacle Publishing, Inc. To contact Pinnacle Publishing, Inc., please call 1-800-493-4867 x4209.

© Microsoft Corporation. All rights reserved.