VERSION 5.00
Begin VB.Form Form1 
   BackColor       =   &H00FFFFFF&
   Caption         =   "Form1"
   ClientHeight    =   3195
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4680
   LinkTopic       =   "Form1"
   ScaleHeight     =   213
   ScaleMode       =   3  'Pixel
   ScaleWidth      =   312
   StartUpPosition =   3  'Windows Default
   Begin VB.Line Line2 
      BorderColor     =   &H00E0E0E0&
      X1              =   16
      X2              =   296
      Y1              =   89
      Y2              =   89
   End
   Begin VB.Line Line1 
      BorderColor     =   &H80000010&
      X1              =   16
      X2              =   296
      Y1              =   88
      Y2              =   88
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
  Line (20, 20)-(60, 20), RGB(127, 127, 127)
  Line (19, 19)-(59, 19), vbWhite
End Sub

