home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmAbout
- BorderStyle = 0 'None
- ClientHeight = 4005
- ClientLeft = 1740
- ClientTop = 2085
- ClientWidth = 7440
- ControlBox = 0 'False
- Height = 4410
- Icon = "3DAbout.frx":0000
- Left = 1680
- LinkTopic = "Form1"
- LockControls = -1 'True
- MaxButton = 0 'False
- MinButton = 0 'False
- Picture = "3DAbout.frx":000C
- ScaleHeight = 4005
- ScaleWidth = 7440
- ShowInTaskbar = 0 'False
- Top = 1740
- Width = 7560
- Begin VB.Shape Shape1
- Height = 795
- Left = 660
- Top = 2700
- Visible = 0 'False
- Width = 6090
- End
- Begin VB.Label lblClose
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- ForeColor = &H00000000&
- Height = 435
- Left = 6180
- TabIndex = 4
- Top = 1380
- Width = 795
- End
- Begin VB.Label lblName
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Mike Stanley"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 9.75
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000000&
- Height = 240
- Left = 2880
- TabIndex = 3
- Top = 1380
- Width = 1350
- End
- Begin VB.Label lblEMail
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "E-Mail: 74632.2227@compuserve.com"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 9.75
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000000&
- Height = 240
- Left = 1680
- TabIndex = 2
- Top = 1695
- Width = 3990
- End
- Begin VB.Label lblVBMax
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Visual Basic to the Max"
- BeginProperty Font
- name = "Times New Roman"
- charset = 0
- weight = 700
- size = 27.75
- underline = 0 'False
- italic = -1 'True
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00C0C000&
- Height = 645
- Left = 900
- TabIndex = 1
- Top = 2760
- Width = 5475
- End
- Begin VB.Label lblTitle
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "VBMax 3D Effects"
- BeginProperty Font
- name = "Times New Roman"
- charset = 0
- weight = 700
- size = 36
- underline = 0 'False
- italic = -1 'True
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00800000&
- Height = 810
- Left = 840
- TabIndex = 0
- Top = 480
- Width = 5625
- End
- Begin VB.Label lblCloseCaption
- Appearance = 0 'Flat
- AutoSize = -1 'True
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- Caption = "Close"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H000000FF&
- Height = 195
- Left = 6330
- TabIndex = 5
- Top = 1485
- Width = 480
- End
- Attribute VB_Name = "frmAbout"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Dim mo3D As New cls3D
- Private Sub Form_Load()
- Move (Screen.Width - Width) \ 2, (Screen.Height - Height) \ 2
- With mo3D
- .Style = gnFLOATING
- .Caption lblVBMax, gnUSE_CONTROL_FONT
-
- .Style = gnRAISED
- .Caption lblTitle, gnUSE_CONTROL_FONT
-
- .Style = gnRAISED
- .Caption lblName, gnUSE_CONTROL_FONT
- .Caption lblEMail, gnUSE_CONTROL_FONT
- .Caption lblCloseCaption, gnUSE_CONTROL_FONT
- .Depth = 2
- .Border lblClose
- .Border Shape1
-
- .Style = gnRECESSED
- .Width = 20
- .FormBorder Me
- End With
- End Sub
- Private Sub lblClose_Click()
- Unload Me
- Set mo3D = Nothing
- Set frmAbout = Nothing
- End Sub
- Private Sub lblClose_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
- With mo3D
- .Depth = 2
- .Width = 0
- .Style = gnRECESSED
- .Border lblClose
- End With
- End Sub
- Private Sub lblClose_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
- With mo3D
- .Style = gnRAISED
- .Border lblClose
- End With
- End Sub
-