home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form fAbout
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Dialog
- Caption = "Microsoft SQL Server "
- ClientHeight = 2085
- ClientLeft = 2010
- ClientTop = 3270
- ClientWidth = 5970
- Height = 2490
- Left = 1950
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2085
- ScaleWidth = 5970
- Top = 2925
- Width = 6090
- Begin VB.CommandButton Command1
- Caption = "&OK"
- Height = 405
- Left = 2280
- TabIndex = 0
- Top = 1350
- Width = 1395
- End
- Begin VB.PictureBox Picture1
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- BorderStyle = 0 'None
- ForeColor = &H80000008&
- Height = 555
- Left = 660
- Picture = "fAbout2.frx":0000
- ScaleHeight = 555
- ScaleWidth = 525
- TabIndex = 1
- Top = 1350
- Width = 525
- End
- Begin VB.PictureBox Picture2
- BackColor = &H00C0C0C0&
- BorderStyle = 0 'None
- Enabled = 0 'False
- Height = 2295
- Left = 90
- ScaleHeight = 2295
- ScaleWidth = 5805
- TabIndex = 2
- Top = 30
- Width = 5805
- Begin VB.Label Label1
- Caption = "Microsoft SQL Server 6.0"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 24
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 885
- Left = 210
- TabIndex = 3
- Top = 90
- Width = 5505
- End
- End
- Attribute VB_Name = "fAbout"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- Unload fAbout
- End Sub
- Private Sub Command1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
- ' X = Int((2000 * Rnd) + 1)
- ' If X > fAbout.Height Then X = fAbout.Height = 300
- ' Command1.Top = X
- ' Y = Int((2000 * Rnd) + 1)
- ' If Y > fAbout.Width Then Y = fAbout.Width = 300
- ' Command1.Left = Y
- ' Command1.Caption = "missed me!!!"
- End Sub
-