VERSION 5.00
Begin VB.UserControl BorderBut 
   ClientHeight    =   1155
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   2175
   ScaleHeight     =   1155
   ScaleWidth      =   2175
   Begin VB.CommandButton cmdButton 
      Caption         =   "Command1"
      Height          =   615
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   1455
   End
End
Attribute VB_Name = "BorderBut"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Option Explicit

Private Sub UserControl_Resize()
    cmdButton.Height = Height
    cmdButton.Width = Width
End Sub

