Visual Basic Tutorial – 31 – Do While Loop

[ad_1]
Facebook –
GitHub –
Google+ –
LinkedIn –
reddit –
Support –
thenewboston –
Twitter –


Posted

in

by

Tags:

Comments

22 responses to “Visual Basic Tutorial – 31 – Do While Loop”

  1. John Luvenburg Avatar

    Thanks! this really helped a lot

  2. Manoj P Avatar

    can someone explain how your loop will increment forever if you dont use var += 1 in your loop??

  3. Konstantinos Hadjiantonis Avatar

    whats the difference between a while and a do while loop?

  4. alexmccoolio7 Avatar

    you didn't explain how it's done at all, you just did one and went hey presto… that's what my actual teacher did and surprise surprise I didn't get that either

  5. CHRiSTiAn Rivera__ Avatar

    hola que tal y en español tendras videos  ,
    saludos lima peru

  6. katherine abriam Avatar

    i got a problem with my project,, in not familiar with vb 6.0

    can you make me a do while loop without a msgbox? please?

  7. ThatMan Avatar

    Why are so many people bitching about how he teaches this? It's a free fucking tutorial on an ENTIRE coding language! Shut the fuck up and do it yourself if you don't like it, I sure as hell haven't had a problem with how he has been teaching it.

  8. 46Bax Avatar

    actually i just looked it up, do while and do until are the same, except do until is while something is false while do while is while something is true

    but if you add a ! which reverses everything, then these 2 become the same. most programmers prefer do until so i guess that's the one to go for

  9. bio Mechatronics Avatar

    Module Module1
        Sub Main()
            Console.WriteLine("We are going to do a 'do while' cycle")
            Console.WriteLine("the cycle is an incremention cycle 'do while num<=100 '")
            Console.WriteLine("this program will run until it reach a false value")
            Console.WriteLine()
            Console.WriteLine("Please enter a value for the 'do while' cycle to begin :")
            Dim num As Double = Console.ReadLine()
            Console.WriteLine()
            Do While num <= 100
                Console.WriteLine(num)
                num = num + 1
                'this program will run until it reach a false value

            Loop
            Console.WriteLine()
            Console.WriteLine("We are going to do a'do until' cycle")
            Console.WriteLine("the cycle is an incremention cycle'do unlil num=100'")
            Console.WriteLine("this program will run until it reach a true value")
            Console.WriteLine()
            Console.WriteLine("Please enter a value for the 'do until' cycle to begin :")
            Dim num1 As Double = Console.ReadLine()
            Console.WriteLine()
            Do Until num1 = 100
                Console.WriteLine(num1)
                num1 = num1 + 1
                'this program will run until it reach a true value
            Loop
            Console.ReadLine()
        End Sub
    End Module

  10. Imperfectlyperfect Avatar

    is this possible in windows form?

  11. maximode06 Avatar

    It's pronounced bool-e-an for future reference bud.

  12. Steven's tutorials Avatar

    I was replying to someone who didn't understand.

  13. Steven's tutorials Avatar

    1:47 "the pizza blocking out statement"

  14. Steven's tutorials Avatar

    he probably does the tutorials from different days which makes him make a new project everytime

  15. Alpha AH Avatar

    Why do you make a new project for each tutorial, just use the same one.

  16. Rahil Wazir Avatar

    BUGGGGGGGGGGGGGGG

  17. Aditya Saxena Avatar

    what's dat sound on 3:43

  18. lub094 Avatar

    the hater got tired of trolling

  19. VitrescentTortoise Avatar

    Hey look, the 1 dislike on every vid is gone.

  20. B. B. Avatar

    what happened with ur udk tutorials…?
    oh and FIRST!

Leave a Reply

Your email address will not be published. Required fields are marked *