About 664,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. 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 …

  3. 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 …

  4. Loops in VB.NET With Examples [ Do, Do Until, For, and For …

    Nov 20, 2019 · This tutorial will discuss how to use different loops in vb.net with examples specifically the Do While, Do Until, For, and For Each loop. Do While Loop. Do While loop can …

  5. Lesson 9 : Looping - Visual Basic Tutorial

    Feb 14, 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 looping. …

  6. 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 …

  7. Do Until Loop - Visual Basic Tutorial

    Visual Basic has three main loop structures and in this second instalment we will look at the Do While’s cousin, the Do Until loop. To recap, a loop allows will execute a block of code a …

  8. Do Loop Until and Do While Loop in VB Exercise and Example

    The Do Loop Until executes the statement (s) once and then repeats a sequence of statements either as long as or until a certain condition is true. A Do Loop of this form executes the …

  9. vba - Do... Loop Until with multiple conditions - Stack Overflow

    Do 'Your code Loop until condition1 And condition2 And will continue all the time all conditions are met. Or will continue when one or more of the conditions are met. You can have any number …

  10. Looping in Visual Basic 2017

    In Visual Basic 2017, looping involves a procedure that runs repetitively until a certain condition is met. For example, we can design a program that adds a series of numbers until the sum …

Refresh