home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form About
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Dialog
- ClientHeight = 4230
- ClientLeft = 1575
- ClientTop = 1095
- ClientWidth = 5190
- ControlBox = 0 'False
- DrawStyle = 5 'Transparent
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = -1 'True
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 4635
- Icon = "ABOUT.frx":0000
- Left = 1515
- LinkMode = 1 'Source
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4230
- ScaleWidth = 5190
- Top = 750
- Width = 5310
- Begin VB.Timer Timer1
- Interval = 2000
- Left = 120
- Top = 2640
- End
- Begin VB.CommandButton Command1
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Cancel = -1 'True
- Caption = "&Close"
- Default = -1 'True
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 2040
- TabIndex = 2
- Top = 3360
- Width = 1095
- End
- Begin VB.Label Label3
- Alignment = 2 'Center
- Caption = $"ABOUT.frx":000C
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 855
- Left = 720
- TabIndex = 4
- Top = 1800
- Width = 3735
- End
- Begin VB.Image Image2
- Appearance = 0 'Flat
- Height = 480
- Left = 4440
- Picture = "ABOUT.frx":00C5
- Top = 2760
- Width = 480
- End
- Begin VB.Image Image1
- Height = 480
- Left = 3720
- Picture = "ABOUT.frx":03CF
- Stretch = -1 'True
- Top = 2760
- Width = 480
- End
- Begin VB.Line Line1
- X1 = 480
- X2 = 4680
- Y1 = 1680
- Y2 = 1680
- End
- Begin VB.Label Label2
- Alignment = 2 'Center
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "Chapter 35: Developing a stand-alone Database Application"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 700
- size = 12
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 735
- Left = 240
- TabIndex = 1
- Top = 840
- Width = 4695
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "This application was designed and developed for:"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 700
- size = 9.75
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000000&
- Height = 495
- Left = 720
- TabIndex = 0
- Top = 240
- Width = 3735
- End
- Begin VB.Label Label4
- Alignment = 2 'Center
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "Copyright
- 1995 Viking Computer Services, Inc."
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 255
- Left = 120
- TabIndex = 3
- Top = 3960
- Width = 4935
- End
- Attribute VB_Name = "About"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- 'Close the form
- Unload About
- End Sub
- Private Sub Form_Activate()
- ' Reset to the default pointer when returning to this form.
- MousePointer = 0
- End Sub
- Private Sub Form_Load()
- 'Center form
- Left = (Screen.Width - Width) / 2
- Top = (Screen.Height - Height) / 2
- 'Place both happy faces
- Image1.Left = 2340
- Image1.Top = 2760
- Image2.Left = 2340
- Image2.Top = 2760
- 'Make first face visible
- Image1.ZOrder
- End Sub
- Private Sub Timer1_Timer()
- 'Open mouth (face01 from VB icons)
- If Timer1.Interval <> 500 Then
- Timer1.Interval = 500
- Image2.ZOrder
- Else
- 'Close mouth (face02 from VB icons)
- Timer1.Interval = 2000
- Image2.ZOrder 1
- Image1.ZOrder
- End If
- End Sub
-