VB.NET 2013 - Loops

  Рет қаралды 57,949

Nicholas Dingle

Nicholas Dingle

Күн бұрын

A new series attempting to help people learn and master Visual Basic .NET 2013. You'll learn programming knowledge and skills throughout this series. While the set of videos will be aimed towards students in NSW Australia who are undertaking Software Design and Development in Years 11 and 12, this playlist will be useful for anyone that would like to learn programming in general.
This video demonstrates loop (or repeating) code and their syntax. Including:
* While loops
* Do Until loops
* For loops
Timestamps:

Пікірлер: 26
@BevvyIsTheBest
@BevvyIsTheBest 6 жыл бұрын
Thanks, learned more in this tutorial than I did in my college class 😬
@iremustun1600
@iremustun1600 3 жыл бұрын
i want to hug you i learned more this video than my collage
@amberlilith3745
@amberlilith3745 5 жыл бұрын
Is there how to use while loop with 2 or more conditions? I have been worked with languages we can do like this but in vb.net at least I didn't meet the right way!
@zahrashahid4963
@zahrashahid4963 7 жыл бұрын
could you please tell me what Console.readkey.keychar generally does ? and is there a difference between this and console.readline ?
@NicholasDingle
@NicholasDingle 7 жыл бұрын
Console.ReadKey reads a single character from the keyboard and the .keychar afterward converts it to a Char datatype. Console.ReadLine gets a whole string after the enter key is pressed.
@zahrashahid4963
@zahrashahid4963 7 жыл бұрын
+Nicholas Dingle thank you for replying and creating this video. It has been really helpful :)
@NicholasDingle
@NicholasDingle 7 жыл бұрын
+Zahra Shahid Happy to help!
@heilahalhumaid7299
@heilahalhumaid7299 3 жыл бұрын
Please can you help I have a homework and one of the questions is (Use nested loop with push and pop to write assembly code that print integers from 1 to 5, three times each. )and I don’t know can you help ?
@christopherfourie6684
@christopherfourie6684 8 жыл бұрын
What if you want to have an interface with radio buttons or check boxes where you want the user to choose but you have to use arrays and for loops?
@NicholasDingle
@NicholasDingle 8 жыл бұрын
You shouldn't need arrays or loops. Make a Forms or WPF project, add your radio buttons, checkboxes and a button. Then add some if statements under the button to do what you want.
@christopherfourie6684
@christopherfourie6684 8 жыл бұрын
Nicholas Dingle​ O ok, so you can use if statements for array values
@NicholasDingle
@NicholasDingle 8 жыл бұрын
Of course
@christopherfourie6684
@christopherfourie6684 8 жыл бұрын
+Nicholas Dingle Awesome
@christopherfourie6684
@christopherfourie6684 8 жыл бұрын
+Nicholas Dingle Thanks
@marissa954
@marissa954 6 жыл бұрын
Thank you !!!
@shaniasooranna7351
@shaniasooranna7351 9 жыл бұрын
Hello , is there any video for classes after subs , parameters and functions ?
@NicholasDingle
@NicholasDingle 9 жыл бұрын
Shania Sooranna Sure do kzbin.info/www/bejne/nHKaoa1vh7-Hq8k
@adeebc2028
@adeebc2028 8 жыл бұрын
Hello Nicholas, how to read array elements from keyboard using for-loop ? Please help me.
@NicholasDingle
@NicholasDingle 8 жыл бұрын
Check the Arrays video, I have some examples in that.
@lliamwebster7965
@lliamwebster7965 9 жыл бұрын
excuse me Nick, are you ever going to do a series based on java?
@NicholasDingle
@NicholasDingle 9 жыл бұрын
+Lliam Webster Not at this stage unless I get into Android development. TheNewBoston has done heaps of Java videos and I trust his tutorials.
@Mr_Bute
@Mr_Bute 9 күн бұрын
' Fibonacci sequence ' 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, .... ' Fib(0) = 0, Fib(1) = 1 ' Fib(n) = Fib(n-1) + Fib(n-2) -> For n > 1 Dim Fib(20) As Integer ' Fibonacci Array Dim N As Integer ' Num of series Fib(0) = 0 ' pre-load by definition of sequence Fib(1) = 1 ' pre-load by definition of sequence For N = 0 To 20 ' only going up to 20th value in series If N = 0 Or N = 1 Then Console.WriteLine("Fib(" & N & ") = " & Fib(N)) Else Fib(N) = Fib(N - 1) + Fib(N - 2) ' THE CORE LINE OF CODE!!! Console.WriteLine("Fib(" & N & ") = " & Fib(N)) End If Next Console.ReadKey() ' press any key
@haydarm.al-samawe9819
@haydarm.al-samawe9819 7 жыл бұрын
honestly I don't have big experience in VB.net .. I start with you to get more information .. but I want to know if I make software using this language work with database .. can run in Windows system mobile ? as Nokia I mean ?
@NicholasDingle
@NicholasDingle 7 жыл бұрын
+haydar M.Al-samawe You definitely can. You'll probably find that a lot of tutorials are for C# but VB.NET has the same functionality. Check here mva.microsoft.com/training-topics/mobile-app-development#!lang=1033
@haydarm.al-samawe9819
@haydarm.al-samawe9819 7 жыл бұрын
Thank you for support .. I really appreciate I will check
VB.NET 2013 - Subs, Functions and Parameters
40:42
Nicholas Dingle
Рет қаралды 49 М.
VB.NET 2013 - Strings
28:40
Nicholas Dingle
Рет қаралды 17 М.
大家都拉出了什么#小丑 #shorts
00:35
好人小丑
Рет қаралды 98 МЛН
Новый уровень твоей сосиски
00:33
Кушать Хочу
Рет қаралды 4,5 МЛН
VB.NET 2013 - Console Commands
19:36
Nicholas Dingle
Рет қаралды 70 М.
VB.NET 2013 - Arrays
32:11
Nicholas Dingle
Рет қаралды 69 М.
Regular Expressions (Regex) Tutorial: How to Match Any Pattern of Text
37:55
VB.NET 2013 - User input and error handling
18:00
Nicholas Dingle
Рет қаралды 23 М.
VB.NET 2013 - Variables and operators
33:55
Nicholas Dingle
Рет қаралды 31 М.
VB.NET 2013 - Decisions
33:14
Nicholas Dingle
Рет қаралды 14 М.
大家都拉出了什么#小丑 #shorts
00:35
好人小丑
Рет қаралды 98 МЛН