home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form about_form
- BackColor = &H00C0C0C0&
- BorderStyle = 1 'Fixed Single
- Caption = "Wais for Windows"
- ClientHeight = 2865
- ClientLeft = 1755
- ClientTop = 2310
- ClientWidth = 5460
- ClipControls = 0 'False
- ControlBox = 0 'False
- Height = 3270
- Icon = 0
- Left = 1695
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2865
- ScaleWidth = 5460
- Top = 1965
- Width = 5580
- Begin SSPanel about_panel
- Align = 1 'Align Top
- Alignment = 6 'Center - TOP
- BackColor = &H00C0C0C0&
- BevelWidth = 2
- BorderWidth = 1
- Caption = "WAIS for Windows (WinWAIS) Version"
- Font3D = 0 'None
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 12
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H00000000&
- Height = 2265
- Left = 0
- TabIndex = 1
- Top = 0
- Width = 5460
- Begin SSPanel Panel3D4
- Alignment = 6 'Center - TOP
- BackColor = &H00C0C0C0&
- BevelOuter = 1 'Inset
- BevelWidth = 2
- BorderWidth = 1
- Caption = "Programmed By:"
- Font3D = 0 'None
- ForeColor = &H00000000&
- Height = 615
- Left = 1140
- TabIndex = 7
- Top = 1470
- Width = 4155
- Begin Label Label3
- BackColor = &H00C0C0C0&
- Caption = "Timothy L. Gauslin"
- Height = 315
- Left = 1260
- TabIndex = 8
- Top = 270
- Width = 1725
- End
- End
- Begin SSPanel Panel3D3
- Alignment = 6 'Center - TOP
- BackColor = &H00C0C0C0&
- BevelOuter = 1 'Inset
- BevelWidth = 2
- BorderWidth = 1
- Caption = "Developed By:"
- Font3D = 0 'None
- ForeColor = &H00000000&
- Height = 885
- Left = 1140
- TabIndex = 4
- Top = 480
- Width = 4155
- Begin Label Label2
- BackColor = &H00C0C0C0&
- Caption = "U.S. Geological Survey"
- Height = 315
- Left = 990
- TabIndex = 6
- Top = 510
- Width = 2145
- End
- Begin Label Label1
- BackColor = &H00C0C0C0&
- Caption = " Information Systems Division"
- Height = 255
- Left = 720
- TabIndex = 5
- Top = 270
- Width = 2625
- End
- End
- Begin SSPanel Panel3D1
- Alignment = 6 'Center - TOP
- BackColor = &H00C0C0C0&
- BevelOuter = 1 'Inset
- BevelWidth = 2
- BorderWidth = 1
- Font3D = 1 'Raised w/light shading
- ForeColor = &H00000000&
- Height = 735
- Left = 210
- TabIndex = 2
- Top = 540
- Width = 735
- Begin PictureBox Picture1
- BackColor = &H00C0C0C0&
- BorderStyle = 0 'None
- Height = 525
- Left = 150
- Picture = ABOUT.FRX:0000
- ScaleHeight = 525
- ScaleWidth = 495
- TabIndex = 3
- Top = 120
- Width = 495
- End
- End
- End
- Begin CommandButton ok_button
- Caption = "OK"
- Height = 405
- Left = 2310
- TabIndex = 0
- Top = 2340
- Width = 705
- End
- Sub Form_Load ()
- On Error Resume Next
- hndl = FreeFile
- Open "wais.ver" For Input As hndl
- If Err Then
- Exit Sub
- End If
- Line Input #hndl, ln$
- Close (hndl)
- about_panel.Caption = about_panel.Caption + " " + ln$
- End Sub
- Sub ok_button_Click ()
- about_form.Hide
- End Sub
-