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

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