home *** CD-ROM | disk | FTP | other *** search
- *****************************************************************************
- * FILE: Sample.cfm
- *
- * WRITTEN BY: Borland Samples Group
- *
- * DATE: 5/93
- *
- * UPDATED: 6/95
- *
- * REVISION: $Revision: 1.1 $
- *
- * VERSION: Visual dBASE
- *
- * DESCRIPTION: This is a sample custom form file used by the Visual dBASE
- * samples. It contains a definition for SearchFormClass,
- * which is a simple form for basic searching. Search.wfm
- * contains a form derived from this class.
- *
- * PARAMETERS: None
- *
- * CALLS: Buttons.cc (Custom Controls file)
- *
- * USAGE: 1. From Form Designer:
- * Select "File", "Set Custom Form Class..." menu choices.
- * Select this file from the tool dialog, or just type it
- * into the "File Name Containing Class" entryfield.
- * Select SearchFormClass from "Class Name" combobox.
- * Press OK button, and you are set.
- *
- * 2. From a program:
- * Define your form class to be inherited from
- * SearchFormClass as follows:
- *
- * CLASS <your class name> of SearchFormClass From "SAMPLE.CFM"
- * ...
- * ENDCLASS
- *
- *******************************************************************************
- CLASS SearchFormClass OF FORM Custom
- Set Procedure to &_dbwinhome.samples\Buttons.cc Additive
- this.Left = 33.333
- this.Top = 4
- this.Text = "Search"
- this.Maximize = .F.
- this.Minimize = .F.
- this.MousePointer = 1
- this.ColorNormal = "BtnText/BtnFace"
- this.Height = 4.6875
- this.Width = 36.833
-
- DEFINE RECTANGLE SEARCHRECT OF THIS;
- PROPERTY;
- Left 1.3184,;
- Top 0.1973,;
- Text "&Search for",;
- ColorNormal "BtnText/BtnFace",;
- Height 2.3652,;
- Width 34.3477
-
- DEFINE ENTRYFIELD SEARCHENTRY OF THIS;
- PROPERTY;
- Left 2.6387,;
- Top 1.0977,;
- ColorHighLight "B+/W*",;
- Value " ",;
- ColorNormal "B/BtnFace",;
- Height 1.1523,;
- Width 31.6943
-
- DEFINE OKBUTTON OKSEARCHBUTTON OF THIS;
- PROPERTY;
- Left 4,;
- Top 3,;
- Group .T.,;
- Default .T.,;
- Height 1.5,;
- Width 14.166
-
- DEFINE CANCELBUTTON CANCELSEARCHBUTTON OF THIS;
- PROPERTY;
- Left 19.5,;
- Top 3,;
- Group .F.,;
- ID 0,;
- Height 1.5,;
- Width 14.166
-
- ENDCLASS
-