About 708,000 results
Open links in new tab
  1. Do...Loop Statement - Visual Basic | Microsoft Learn

    Sep 29, 2022 · Use a Do...Loop structure when you want to repeat a set of statements an indefinite number of times, until a condition is satisfied. If you want to repeat the statements a …

  2. Visual Basic Do Loops - the coding guys

    There are two Do Loops in Visual Basic: the Do While and Do Until. The Do While loops something which is true, and the Do Until loops until a certain condition is met. Create a new …

  3. Loop Structures - Visual Basic | Microsoft Learn

    Sep 15, 2021 · Visual Basic loop structures allow you to run one or more lines of code repetitively. You can repeat the statements in a loop structure until a condition is True, until a condition is …

  4. Lesson 9 : Looping - Visual Basic Tutorial

    May 13, 2025 · We can create a Visual Basic procedure that enables the program to run iteratively until specific conditions are satisfied. This procedure is commonly referred to as …

  5. Do...Loop statement (VBA) | Microsoft Learn

    Mar 29, 2022 · This example shows how Do...Loop statements can be used. The inner Do...Loop statement loops 10 times, asks the user if it should keep going, sets the value of the flag to …

  6. Visual Basic Do While Loop Example - UMA Technology

    The Do While loop is a fundamental control structure in Visual Basic that eclipses many scenarios where repetitive execution is needed. Whether managing user input, summing values, or …

  7. Do While Loop - Visual Basic Tutorial

    In this tutorial you will learn the mechanics of loops in VB, and looking at the Do While Loop, how they control the flow of your application

  8. Lesson 15 Looping - Visual Basic Tutorial

    Apr 9, 2022 · In Visual Basic 2015, there are several Do Loop structures, as shown below: a) b) c) d) * Exiting the Loop. We can also use Exit Do to escape the loop. Let' s examine the following …

  9. Visual Basic Do While Loop Multiple Conditions - UMA ... - UMA …

    This article explores the Do While Loop in Visual Basic, specifically focusing on how to manage multiple conditions within the loop. We will examine the syntax, structure, and various practical …

  10. Visual Basic .NET Language Tutorial => Do...Loop

    Use Do...Loop to repeat a block of statements While or Until a condition is true, checking the condition either at the beginning or at the end of the loop. Dim x As Integer = 0 Do …

Refresh