VERSION 5.00 Begin VB.Form frmFirstCode Caption = "My First Code" ClientHeight = 1440 ClientLeft = 1215 ClientTop = 1995 ClientWidth = 2925 LinkTopic = "Form1" PaletteMode = 1 'UseZOrder ScaleHeight = 1440 ScaleWidth = 2925 Begin VB.CommandButton cmdBeep Caption = "Beep!" Height = 495 Left = 840 TabIndex = 0 Top = 480 Width = 1215 End Attribute VB_Name = "frmFirstCode" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Private Sub cmdBeep_Click() End Sub