this is the basic code of Do While Loop Structure in VB6
this structure is similar to Do Loop While Structure
Private Sub Command1_Click()
Dim co As Integer
co = 1'set co to 1
Do While co <= 10
Print co 'print the value...

0 Comments