home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmAbout
- BackColor = &H00FFFFFF&
- BorderStyle = 3 'Fixed Double
- Caption = "About Orders"
- ClientHeight = 2115
- ClientLeft = 2265
- ClientTop = 2610
- ClientWidth = 4470
- ClipControls = 0 'False
- ControlBox = 0 'False
- Height = 2520
- Left = 2205
- LinkTopic = "Form3"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2115
- ScaleWidth = 4470
- Top = 2265
- Width = 4590
- Begin CommandButton cmdOK
- Caption = "OK"
- Default = -1 'True
- Height = 495
- Left = 1560
- TabIndex = 0
- Top = 960
- Width = 1215
- End
- Begin Label Label3
- Alignment = 2 'Center
- BackColor = &H00FFFFFF&
- Caption = "Copyright (c) Oracle Corporation, 1994. All rights reserved."
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 435
- Left = 840
- TabIndex = 3
- Top = 1560
- Width = 2895
- End
- Begin Label Label2
- Alignment = 2 'Center
- BackColor = &H00FFFFFF&
- Caption = "Oracle Corporation"
- Height = 255
- Left = 960
- TabIndex = 2
- Top = 585
- Width = 2535
- End
- Begin Label Label1
- Alignment = 2 'Center
- BackColor = &H00FFFFFF&
- Caption = "Quote Sample Version 1.2"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 9.75
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 255
- Left = 720
- TabIndex = 1
- Top = 225
- Width = 2955
- End
- Option Explicit
- Sub cmdOK_Click ()
- 'Unloads the About Box
- Unload frmAbout
- End Sub
- Sub Form_Load ()
- 'Centers the Form on the Screen
- CenterForm frmAbout
- End Sub
-