VERSION 4.00
Begin VB.Form fAbout 
   BackColor       =   &H00C0C0C0&
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "Microsoft SQL Server "
   ClientHeight    =   1980
   ClientLeft      =   2145
   ClientTop       =   3315
   ClientWidth     =   5970
   Height          =   2385
   Left            =   2085
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1980
   ScaleWidth      =   5970
   Top             =   2970
   Width           =   6090
   Begin VB.PictureBox Picture1 
      Appearance      =   0  'Flat
      BackColor       =   &H00C0C0C0&
      BorderStyle     =   0  'None
      ForeColor       =   &H80000008&
      Height          =   525
      Left            =   240
      Picture         =   "fAbout.frx":0000
      ScaleHeight     =   525
      ScaleWidth      =   525
      TabIndex        =   0
      Top             =   120
      Width           =   525
   End
   Begin VB.PictureBox Picture2 
      BackColor       =   &H00C0C0C0&
      BorderStyle     =   0  'None
      Enabled         =   0   'False
      Height          =   1905
      Left            =   90
      ScaleHeight     =   1905
      ScaleWidth      =   5805
      TabIndex        =   1
      Top             =   30
      Width           =   5805
      Begin Threed.SSCommand Command1 
         Height          =   375
         Left            =   1920
         TabIndex        =   4
         Top             =   1320
         Width           =   1875
         _version        =   65536
         _extentx        =   3307
         _extenty        =   661
         _stockprops     =   78
         caption         =   "OK"
         bevelwidth      =   1
         outline         =   0   'False
      End
      Begin VB.Label Label2 
         Caption         =   "Copyright Microsoft 1995"
         Height          =   285
         Left            =   2010
         TabIndex        =   3
         Top             =   810
         Width           =   2115
      End
      Begin VB.Label Label1 
         Caption         =   "Microsoft SQL Server 6.0"
         BeginProperty Font 
            name            =   "MS Sans Serif"
            charset         =   0
            weight          =   400
            size            =   18
            underline       =   0   'False
            italic          =   0   'False
            strikethrough   =   0   'False
         EndProperty
         Height          =   675
         Left            =   840
         TabIndex        =   2
         Top             =   150
         Width           =   4275
      End
   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


