How to Set Up CTRL+G as a Find Again Hot Key in Visual FoxPro

Last reviewed: September 14, 1995
Article ID: Q136670
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 3.0

SUMMARY

Visual FoxPro does not automatically use CTRL+G as a Find Again hot key, but you can add it.

MORE INFORMATION

To add use CTRL+G as a Find Again hot key to repeat the last text search:

  1. Open a program called Vfpstart.prg. It should be located in your VFP directory.

  2. Locate the line that says "*Startup program for Visual FoxPro," and after that line type:

    DEFINE BAR _MED_FINDA OF _medit ;

          PROMPT "Find A\<gain" ;
          AFTER _MED_FIND ;
          KEY Ctrl+G, "Ctrl+G" ;
          MESSAGE "Repeat the last text search"
    

  3. Save and close Vfpstart.prg.

  4. The next time you start Visual FoxPro, Find Again will appear as an option in the Edit menu.

REFERENCES

Programming Visual FoxPro 3.0, Page 17.


Additional reference words: 3.00 VFoxWin
KBCategory: kbtool kbcode
KBSubcategory: FxtoolGeneral


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: September 14, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.