home *** CD-ROM | disk | FTP | other *** search
/ Power CD-ROM!! 7 / POWERCD7.ISO / prgmming / clipper / killget.prg < prev    next >
Text File  |  1993-10-14  |  1KB  |  64 lines

  1. /*
  2.  * File......: KILLGET.PRG
  3.  * Author....: Martin Colloby
  4.  * BBS.......: The Dark Knight Returns
  5.  * Net/Node..: 050/069
  6.  * User Name.: Martin Colloby
  7.  * Date......: 18/4/93
  8.  * Revision..: 1.0
  9.  *
  10.  * This is an original work by Martin Colloby and is placed in the public
  11.  * domain.
  12.  *
  13.  * Modification history:
  14.  * ---------------------
  15.  *
  16.  * $Log$
  17.  *
  18.  */
  19.  
  20.  
  21. /*  $DOC$
  22.  *  $FUNCNAME$
  23.  *      GT_KILLCURRENTGET()
  24.  *  $CATEGORY$
  25.  *      General
  26.  *  $ONELINER$
  27.  *      Kill the focus of the active GET
  28.  *  $SYNTAX$
  29.  *      GT_KillCurrentGet()
  30.  *  $ARGUMENTS$
  31.  *      None
  32.  *  $RETURNS$
  33.  *      .F.
  34.  *  $DESCRIPTION$
  35.  *      Kills the focus of the current GET
  36.  *  $EXAMPLES$
  37.  *
  38.  *  $SEEALSO$
  39.  *
  40.  *  $INCLUDE$
  41.  *
  42.  *  $END$
  43.  */
  44.  
  45. *
  46. FUNCTION GT_KillCurrentGet()
  47.  
  48. /*****************************************************************************
  49.  Purpose - Kill the focus of the active GET
  50.  Returns - .F. to invalidate PreBlock of GET
  51.  Author  - Log
  52.  Created - 05/10/92
  53. ******************************************************************************
  54.  Parameters - None
  55.  Privates   - None
  56.  Locals     - None
  57.  Externals  - None
  58. *****************************************************************************/
  59.  
  60. getactive():KillFocus()
  61.  
  62. RETURN .F.
  63. *
  64.