i want this result :
* * * * *
* * * *
* * *
* *
*
but i get this result with this code :
* * * * *
* * * *
* * *
* *
*
Private Sub Command1_Click()
a = 5
For i = 1 To 5
For j = a To 1 Step -1
Print " * ";
Next j
Print
a = a - 1
Next i
End Sub
please help! urgent!!