home *** CD-ROM | disk | FTP | other *** search
- * Filename......: D_Field.Prg
- *
- * Author........: Vernon E. Six, Jr.
- *
- * Last Update...: Mon 10-14-1991 10:29:38
- *
- * Notice........: Copyright (c) 1991 by Vernon E. Six, Jr.
- * All Rights Reserved World Wide
- *
- * Dialect.......: Clipper v5.0x
-
- #include "INKEY.CH"
- #include "SETCURS.CH"
-
- FUNCTION D_Field
- *****
- * Delete currently highlighted record
- *****
- LOCAL n_Button
-
- n_Button = VS_Alert( { PADC(ALLTRIM(_DICTHDR->DBF_NAME)+"->" + ;
- ALLTRIM(_DICTFLD->FIELD_NAME), 40), ;
- PADC("Delete Current Field?", 40), ;
- PADC("Are You Sure?", 40) }, ;
- { " No ", " Yes " }, 3 )
-
- IF n_Button = 1
- RETURN(NIL)
- ENDIF
-
- _DICTFLD->( VS_DelRec() )
-
- RETURN(NIL)
- *** EOF: D_Field() **********************************************************
-
-
-