home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form CopyrightForm
- Appearance = 0 'Flat
- BackColor = &H00000000&
- BorderStyle = 1 'Fixed Single
- Caption = "Sci-CALC"
- ClientHeight = 2730
- ClientLeft = 2490
- ClientTop = 3510
- ClientWidth = 3585
- ControlBox = 0 'False
- BeginProperty Font
- Name = "Garamond"
- Size = 24
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 2730
- ScaleWidth = 3585
- Begin VB.PictureBox Picture1
- AutoRedraw = -1 'True
- Height = 1080
- Left = 285
- ScaleHeight = 1020
- ScaleWidth = 2970
- TabIndex = 3
- Top = 165
- Width = 3030
- End
- Begin VB.CommandButton Command1
- Caption = "O K"
- BeginProperty Font
- Name = "Garamond"
- Size = 18
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 405
- Left = 1140
- TabIndex = 2
- Top = 2175
- Width = 1335
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- Caption = "Mastering VB6"
- BeginProperty Font
- Name = "Garamond"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FFFF00&
- Height = 345
- Left = 15
- TabIndex = 0
- Top = 1365
- Width = 3525
- End
- Begin VB.Label Label4
- Alignment = 2 'Center
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- Caption = "Copyright 1998"
- BeginProperty Font
- Name = "Garamond"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FFFF00&
- Height = 375
- Left = 75
- TabIndex = 1
- Top = 1650
- Width = 3465
- End
- Attribute VB_Name = "CopyrightForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Me.Hide
- End Sub
- Private Sub Form_Load()
- Me.Refresh
- Picture1.CurrentX = (Picture1.ScaleWidth - TextWidth(" SciCLAC 1.0")) / 2
- Picture1.CurrentY = (Picture1.ScaleHeight - TextHeight(" SciCALC 1.0")) / 2
- Picture1.ForeColor = RGB(255, 255, 255)
- Picture1.Print " SciCALC 1.0"
- Picture1.CurrentX = (Picture1.ScaleWidth - TextWidth(" SciCALC 1.0")) / 2 + TextWidth("S") / 12
- Picture1.CurrentY = (Picture1.ScaleHeight - TextHeight(" SciCALC 1.0")) / 2 + TextHeight("S") / 16
- Picture1.ForeColor = RGB(0, 0, 0)
- Picture1.Print " SciCALC 1.0"
- End Sub
-