home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 April B
/
Pcwk4b98.iso
/
Borland
/
Dbase50w
/
MUSIC1.PAK
/
ABOUT.WFM
next >
Wrap
Text File
|
1994-08-02
|
3KB
|
120 lines
*******************************************************************************
* PROGRAM: About.wfm
*
* WRITTEN BY: Borland Samples Group
*
* DATE: 1/94
*
* UPDATED: 6/94
*
* REVISION: $Revision: 1.9 $
*
* VERSION: dBASE FOR WINDOWS 5.0
*
* DESCRIPTION: This is a form that comes up when the "About" menu choice
* is selected from the "Help" menu. It displays general
* information about the Musical Methods application.
*
* PARAMETERS: None
*
* CALLS: Music.cc (for custom pushbuttons)
*
* USAGE: DO About.wfm
*
*******************************************************************************
set ldcheck off
** END HEADER -- do not remove this line*
* Generated on 06/01/94
*
LOCAL f
f = NEW ABOUTFORM()
f.Open()
CLASS ABOUTFORM OF FORM
Set Procedure to Music.cc Additive
this.Height = 8.27
this.Minimize = .F.
this.Maximize = .F.
this.HelpFile = ""
this.HelpId = ""
this.Text = "About"
this.MousePointer = 1
this.Width = 45.79
this.Top = 5.05
this.Left = 23.83
DEFINE RECTANGLE OUTSIDERECT OF THIS;
PROPERTY;
Height 5.05,;
Text "",;
FontName "",;
BorderStyle 2,;
ColorNormal "N/W",;
Border .T.,;
Width 43.25,;
Top 0.50,;
Left 1.35
DEFINE RECTANGLE INSIDERECT OF THIS;
PROPERTY;
Height 4.20,;
Text "",;
BorderStyle 1,;
ColorNormal "n/n",;
Border .T.,;
Width 11.66,;
Top 0.95,;
Left 2.36
DEFINE IMAGE MUSICIMAGE OF THIS;
PROPERTY;
Height 4.04,;
Alignment 2,;
DataSource "FILE SMLMUSIC.BMP",;
Width 10.81,;
Top 1.01,;
Left 2.70
DEFINE TEXT COPYRIGHTTEXT OF THIS;
PROPERTY;
Height 2.53,;
Text " Copyright (C) 1994 Borland International Inc. All rights Reserved.",;
FontName "Small Fonts",;
ColorNormal "N/W",;
Border .F.,;
Alignment 10,;
Width 18.92,;
FontBold .F.,;
Top 2.53,;
FontSize 7.00,;
Left 20.27
DEFINE TEXT TITLETEXT OF THIS;
PROPERTY;
Height 1.52,;
Text "Musical Methods",;
FontName "Times New Roman",;
ColorNormal "R/W",;
Border .F.,;
Alignment 1,;
Width 27.03,;
FontBold .F.,;
Top 1.01,;
FontSize 16.00,;
Left 15.55
DEFINE OKBUTTON ABOUTOKBUTTON OF THIS;
PROPERTY;
Height 1.50,;
OnClick {;form.Close()},;
Width 14.11,;
Top 6.06,;
Left 15.73
ENDCLASS