#Status Message Box in VB
11-Oct-91 11:12:53
Sb: #2598-#Status Message Box in VB
Fm: Ted M. Young 76703,4343
To: James Nelson 70702,3331
James,
Two things will probably fix things:
1. Insert an x% = DoEvents() before the Loop… line.
2. Insert a Form1.Label1.Refresh before the final Screen.MousePointer =
0
line (the last line).
The DoEvents() will allow Windows (and VB) to update the Caption, and also
allow Windows to do other things while you're pausing. The .Refresh will
cause VB to display the new caption.
– Ted
There is 1 Reply.