home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form About
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Double
- Caption = "About"
- ClientHeight = 2730
- ClientLeft = 2280
- ClientTop = 1545
- ClientWidth = 4965
- ControlBox = 0 'False
- ForeColor = &H00000000&
- Height = 3135
- Left = 2220
- LinkMode = 1 'Source
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2730
- ScaleWidth = 4965
- Top = 1200
- Width = 5085
- Begin PictureBox Picture1
- AutoSize = -1 'True
- BorderStyle = 0 'None
- Height = 615
- Left = 1920
- Picture = ABOUT.FRX:0000
- ScaleHeight = 615
- ScaleWidth = 1005
- TabIndex = 1
- Top = 1920
- Width = 1005
- End
- Begin PictureBox Picture3
- BackColor = &H00C0C0C0&
- BorderStyle = 0 'None
- Height = 495
- Left = 480
- ScaleHeight = 495
- ScaleWidth = 3975
- TabIndex = 3
- Top = 1320
- Width = 3975
- Begin Label Label2
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "by Dennis Huss"
- Height = 255
- Left = 240
- TabIndex = 4
- Top = 120
- Width = 3495
- End
- End
- Begin PictureBox Picture2
- BackColor = &H00C0C0C0&
- BorderStyle = 0 'None
- Height = 975
- Left = 480
- ScaleHeight = 975
- ScaleWidth = 3975
- TabIndex = 0
- Top = 120
- Width = 3975
- Begin Label Label1
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "WINDCHILL"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "Times New Roman"
- FontSize = 36
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 735
- Left = 120
- TabIndex = 2
- Top = 120
- Width = 3735
- End
- End
- Sub BorderBox (source1 As Control, source2 As Control)
- bleft% = source1.left - 20
- btop% = source1.top - 20
- bwide% = source1.width + 15
- bhigh% = source1.height + 15
- source2.Line (bleft%, btop%)-Step(bwide%, 0), 0
- source2.Line -Step(0, bhigh%), &HFFFFFF
- source2.Line -Step(-bwide%, 0), &HFFFFFF
- source2.Line -Step(0, -bhigh%), 0
- End Sub
- Sub BorderBoxRaised (source1 As Control, source2 As Form)
- bleft% = source1.left - 20
- btop% = source1.top - 20
- bwide% = source1.width + 15
- bhigh% = source1.height + 15
- source2.Line (bleft%, btop%)-Step(bwide%, 0), &HFFFFFF
- source2.Line -Step(0, bhigh%), 0
- source2.Line -Step(-bwide%, 0), 0
- source2.Line -Step(0, -bhigh%), &HFFFFFF
- End Sub
- Sub Form_Paint ()
- BorderBoxRaised picture2, about
- BorderBoxRaised picture3, about
- BorderBox Label2, picture3
- End Sub
- Sub Picture1_Click ()
- about.Hide
- End Sub
-