here is a small code:-
Private Sub Command1_Click( )
Dim i As Integer, j As Integer
For i = 1 To 10000000
For j = 1 To 10000000
Print "SDFGH========= "; j
Next j
Next i
End Sub
when i click command1 in the form i want to view:
SDFGH========== 1
SDFGH========== 2
.
.
.
till
SDFGH========== =10000000
but i am unable to view the complete runtime execution...... ..
please help so that i can see entire execution till SDFGG========== =100000000
or let's assume till "infinity" in case if i don't want the loop to stop......infin ite loop
but the visual basic.exe gives the message this program is not responding..... .
Private Sub Command1_Click( )
Dim i As Integer, j As Integer
For i = 1 To 10000000
For j = 1 To 10000000
Print "SDFGH========= "; j
Next j
Next i
End Sub
when i click command1 in the form i want to view:
SDFGH========== 1
SDFGH========== 2
.
.
.
till
SDFGH========== =10000000
but i am unable to view the complete runtime execution...... ..
please help so that i can see entire execution till SDFGG========== =100000000
or let's assume till "infinity" in case if i don't want the loop to stop......infin ite loop
but the visual basic.exe gives the message this program is not responding..... .
Comment