home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- Caption = "Form1"
- ClientHeight = 3135
- ClientLeft = 2925
- ClientTop = 3690
- ClientWidth = 6825
- Height = 3540
- Left = 2865
- LinkTopic = "Form1"
- MDIChild = -1 'True
- ScaleHeight = 3135
- ScaleWidth = 6825
- Top = 3345
- Width = 6945
- Begin CommandButton Command1
- Caption = "Press for Thermometer"
- Height = 465
- Left = 1905
- TabIndex = 0
- Top = 1335
- Width = 3030
- End
- Option Explicit
- Sub Command1_Click ()
- Dim i, j As Integer
- Call ThermInitPercent(100, "Converting Invoice Table" + Chr(10) + Chr(10) + "Please wait...")
- For i = 1 To 100
- For j = 1 To 1000
- DoEvents
- Next j
- Call ThermTick
- DoEvents
- Next i
- Call ThermClose
- End Sub
- Sub Form_Load ()
- Show
- End Sub
-