VERSION 5.00
Object = "{56C5A94B-F65A-44A8-A264-F6B05B668385}#6.0#0"; "MyControls.ocx"
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   3195
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4680
   LinkTopic       =   "Form1"
   ScaleHeight     =   3195
   ScaleWidth      =   4680
   StartUpPosition =   3  'Windows Default
   Begin MyControls.BorderBut BorderBut1 
      Height          =   2415
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   3855
      _ExtentX        =   6800
      _ExtentY        =   4260
      Color           =   65280
      ColorBorderWidth=   80
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Form_Resize()
    Me.BorderBut1.Width = Me.Width - 100
    Me.BorderBut1.Height = Me.Height - 400
End Sub
