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 of co
co = co + 1'increment by 1
Loop
End Sub
Happy Coding
These icons link to social bookmarking sites where readers can share and discover new web pages.
Leave a comment