home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmAbout
- BackColor = &H00FFFFFF&
- BorderStyle = 3 'Fixed Double
- Caption = "About VB*SQL"
- ClientHeight = 2115
- ClientLeft = 1710
- ClientTop = 2280
- ClientWidth = 3720
- ClipControls = 0 'False
- ControlBox = 0 'False
- Height = 2520
- Left = 1650
- LinkTopic = "Form3"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2115
- ScaleWidth = 3720
- Top = 1935
- Width = 3840
- Begin CommandButton cmdOK
- Caption = "OK"
- Default = -1 'True
- Height = 495
- Left = 1080
- 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 = 360
- TabIndex = 3
- Top = 1560
- Width = 2895
- End
- Begin Label Label2
- Alignment = 2 'Center
- BackColor = &H00FFFFFF&
- Caption = "Oracle Corporation"
- Height = 255
- Left = 480
- TabIndex = 2
- Top = 585
- Width = 2535
- End
- Begin Label Label1
- Alignment = 2 'Center
- BackColor = &H00FFFFFF&
- Caption = "VB*SQL Sample Version 2.0"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 9.75
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 255
- Left = 240
- TabIndex = 1
- Top = 225
- Width = 3135
- End
- Option Explicit
- Sub cmdOK_Click ()
- 'Unloads the About Box
- Unload frmAbout
- End Sub
- Sub Form_Load ()
- 'Centers the Form on the Screen
- Call CenterForm(frmAbout)
- End Sub
-