|
-
Nov 19th, 2000, 01:01 AM
#1
Thread Starter
New Member
The following code:
Private Sub cmdPrint_Click()
Dim count As Integer
Dim number As Integer
Dim counter As Integer
count = 1
number = 0
counter = 0
For count = 1 To 10
Do
Print "*"
number = number + 1
counter = counter + 1
Loop While number <> counter
Print
Next count
End Sub
is supposed to produce the following shape:
*
**
***
****
*****
******
*******
********
*********
**********
Instead it produces thus:
*
*
*
*
*
*
*
*
*
*
please help.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|