home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 April / Chip_2001-04_cd1.bin / chplus / vb / vbkids20.exe / VBKids / VBKProjects / VB6Projects / FirstCode.Frm (.txt) next >
Visual Basic Form  |  2000-06-12  |  803b  |  28 lines

  1. VERSION 5.00
  2. Begin VB.Form frmFirstCode 
  3.    Caption         =   "My First Code"
  4.    ClientHeight    =   1440
  5.    ClientLeft      =   1215
  6.    ClientTop       =   1995
  7.    ClientWidth     =   2925
  8.    LinkTopic       =   "Form1"
  9.    PaletteMode     =   1  'UseZOrder
  10.    ScaleHeight     =   1440
  11.    ScaleWidth      =   2925
  12.    Begin VB.CommandButton cmdBeep 
  13.       Caption         =   "Beep!"
  14.       Height          =   495
  15.       Left            =   840
  16.       TabIndex        =   0
  17.       Top             =   480
  18.       Width           =   1215
  19.    End
  20. Attribute VB_Name = "frmFirstCode"
  21. Attribute VB_GlobalNameSpace = False
  22. Attribute VB_Creatable = False
  23. Attribute VB_PredeclaredId = True
  24. Attribute VB_Exposed = False
  25. Option Explicit
  26. Private Sub cmdBeep_Click()
  27. End Sub
  28.