home *** CD-ROM | disk | FTP | other *** search
- *****************************************************************************
- * PROGRAM: Pictures.wfm
- *
- * WRITTEN BY: Borland Samples Group
- *
- * DATE: 5/93
- *
- * UPDATED: 4/94
- *
- * VERSION: dBASE FOR WINDOWS 5.0
- *
- * DESCRIPTION: This form file creates a form that displays bitmaps in an
- * OLE object -- which you can modify in Paint Brush by double
- * clicking in that object. It displays the bitmap names in
- * a listbox, and also allows you to listen to the sound
- * corresponding to each bitmap by pressing the Sound button
- *
- * PARAMETERS: None
- *
- * CALLS: Pictures.qbe (View of table)
- *
- * USAGE: DO Pictures.wfm
- *
- *******************************************************************************
- create session
- set talk off
- set ldCheck off
-
- ** END HEADER -- do not remove this line*
- * Generated on 05/11/94
- *
- LOCAL f
- f = NEW PICTURESFORM()
- f.Open()
-
- CLASS PICTURESFORM OF FORM
- this.MousePointer = 1
- this.View = "PICTURES.QBE"
- this.ColorNormal = "BG/B"
- this.Text = "Pictures Form"
- this.Width = 91.80
- this.Top = 0.00
- this.Left = 0.00
- this.Height = 19.19
- this.Minimize = .F.
- this.Maximize = .F.
- this.HelpFile = ""
- this.HelpId = ""
-
- DEFINE PUSHBUTTON SOUND OF THIS;
- PROPERTY;
- OnClick {;play sound binary pictures->sound},;
- ColorNormal "N/W",;
- Text "Play &Sound",;
- Width 20.46,;
- Top 11.28,;
- Left 1.32,;
- Height 1.66,;
- Default .T.
-
- DEFINE LISTBOX THINGS OF THIS;
- PROPERTY;
- ColorNormal "N/W+",;
- Width 20.78,;
- Top 4.55,;
- Left 1.16,;
- Height 5.65,;
- ID 800,;
- DataSource "FIELD NAME",;
- ColorHighLight "RG+/B"
-
- DEFINE OLE PICTURE OF THIS;
- PROPERTY;
- Width 67.58,;
- Top 3.30,;
- Left 23.10,;
- Height 15.66,;
- ID 88,;
- DataLink "PICTURES->BITMAPOLE"
-
- DEFINE TEXT TITLE OF THIS;
- PROPERTY;
- ColorNormal "GR+/B",;
- Text "Sights and Sounds",;
- Width 100.3,;
- Top 0.00,;
- Left 0.00,;
- Height 3.03,;
- FontBold .F.,;
- FontSize 28.00,;
- FontName "Times New Roman",;
- Border .F.,;
- Alignment 1
-
- DEFINE TEXT SELECTTEXT OF THIS;
- PROPERTY;
- ColorNormal "RG+/B",;
- Text "Select &Image:",;
- Width 18.48,;
- Top 3.30,;
- Left 1.32,;
- Height 1.10,;
- Border .F.
-
- ENDCLASS
-
-
-