Private Sub Command1_Click()
Dim i As Integer, j As Integer
For i = 1 To 10000
For j = 1 To 10000
Print "SDFGH========="; j
Next j
Next i
End Sub
when i click on command1, i want to view the enitre execution of loop,i.e, from
SDGGH=============1
SDFGH=============2
.
.
till.......SDFGH============10000
in separate lines but form is too small and it displays only till ...
SDFGH=============42
please help...