VERSION 5.00
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 VB.PictureBox picControls 
      Align           =   2  'Align Bottom
      BorderStyle     =   0  'None
      Height          =   555
      Left            =   0
      ScaleHeight     =   555
      ScaleWidth      =   4680
      TabIndex        =   0
      Top             =   2640
      Width           =   4680
      Begin VB.PictureBox picButtons 
         BorderStyle     =   0  'None
         Height          =   435
         Left            =   2100
         ScaleHeight     =   435
         ScaleWidth      =   2535
         TabIndex        =   1
         Top             =   90
         Width           =   2535
         Begin VB.CommandButton cmdCancel 
            Caption         =   "Cancel"
            Height          =   345
            Left            =   1320
            TabIndex        =   3
            Top             =   60
            Width           =   1065
         End
         Begin VB.CommandButton cmdOK 
            Caption         =   "OK"
            Height          =   345
            Left            =   210
            TabIndex        =   2
            Top             =   60
            Width           =   1065
         End
      End
   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 picControls_Resize()
    With picButtons
        .Left = picControls.ScaleWidth - .Width
    End With
End Sub
