do whie loop
do{
----
} while(condition);
vba do while
' OPTION 1
i =0
Do While i < 3 'Check Condition at the START of the loop
' Do something
i = i + 1
Loop
'OPTION 2
i =0
Do
' Do something
i = i + 1
Loop While i < 3 'Check Condition at the END of the loop
do loop
do
{
code to be executed;
}
while (condition is true);
do until vb.net
Dim z As Integer = 0
'Do the action until the condition is true
'add 1 to z until z equals 20
Do Until z = 20
MsgBox(z)
z += 1
Loop
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us