home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmCnt
- Caption = "Counter"
- ClientHeight = 1680
- ClientLeft = 1095
- ClientTop = 1515
- ClientWidth = 3405
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 1680
- ScaleWidth = 3405
- Begin VB.CommandButton Command1
- Caption = "Count"
- Height = 435
- Left = 1860
- TabIndex = 1
- Top = 540
- Width = 1215
- End
- Begin VB.Label Label1
- Caption = "Label1"
- Height = 315
- Left = 420
- TabIndex = 0
- Top = 600
- Width = 1215
- End
- Attribute VB_Name = "frmCnt"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- ' Copyright
- 1997 by Desaware Inc. All Rights Reserved
- Private Sub Command1_Click()
- Dim cnt&
- For cnt& = 1 To 2500
- Label1.Caption = cnt&
- Label1.Refresh
- Next cnt&
- End Sub
-