Using If and Else Statements – C Sharp C# Visual Studio 2008
In this tutorial I show you how to use if else statements in your code. WEBSITE: www.Quack-Ware.com FORUMS www.Quack-Ware.com
Don’t forget to check out our other video tutorials or share this video with a friend.
12 responses to “Using If and Else Statements – C Sharp C# Visual Studio 2008”
Leave a Reply Cancel reply
Video Tutorials
Bringing you the best video tutorials for Photoshop, Illustrator, Fireworks, WordPress, CSS and others.
Video tutorial posted 08/01/13
Category: C# Tutorials
Pages
Random Videos
-
c# Unity3D Tutorial Series #01 – Player Movement
3,697 views
-
How to Use Firebug to Learn/Edit CSS Code
3,226 views
-
C# How to make an AIMBOT tutorial 1/9 HD
3,634 views
Video Categories
- 3DS Max Tutorials (150)
- After Effects Tutorials (160)
- C# Tutorials (121)
- Colour (6)
- Crazy Effects (1)
- CSS Tutorials (120)
- Dreamweaver Tutorials (139)
- Excel Tutorials (127)
- Featured (10)
- Fireworks Tutorials (131)
- General Effects (9)
- HTML Tutorials (143)
- Illustration and Vector (1)
- Illustrator Tutorials (174)
- IMove Tutorials (119)
- Lightroom Tutorials (145)
- People and Faces (3)
- Photoshop Tutorials (169)
- Text Effects (7)
- Uncategorized (32)
- WordPress Tutorials (140)
Tags
VideoTutorials.co.uk
-
Videotutorials.co.uk offers the web's best Photoshop tutorials, Illustrator video guides, CSS and HTML tutorials and much more all in one place. With new videos being added every day, you can learn how to master software and code to give your images and website some great effects.
Our site has beginner, intermediate and advanced video tutorials of varying lengths so you can learn a new skill at your own speed and level. So whether you're a web designer, print designer or just wanting to edit some family photos, you can get to it quickly and easily using these free video guides. (more)
Just wanted to say Thank you so much for all your Tutorials ^_^
45 days gone, read many books, copped many tutorials, but failed to understand what c sharp , so far I have no intention to give up, and later I will not give up even if I am stuck with the else and if for the next few years. 905 students in every field just have a wish only 10% are NOT morons. memory counts a lots 90% have a low status of memory. Well I don’t fall in the 10% and am wandering in C Sharp City. Please teach the process of Becoming a programmer , I am in the Majority Students HLEP
can you please tell me how to create to radio buttons for male and female options and if i select one that message should be shown how do i do that…?
im having troubble 🙁
Im writing:
if (progressbar1.value = 100)
{
Timer1.stop
}
What its that im doing wrong ?
If you want the 4th option of “You Cant check both” when both is checked, then you need to write:
if (checkBoxHello.checked & checkBoxAngry.checked)
{
MessageBox.Show(“You Cant check both”);
}
else if (checkBoxHello.checked)
{……
Same from here, both for the first checkbox & the second you use “else if”, for none picked “else”. Works for me. If you do it with a separate “if” then you get your 4th option +the first option displayed before/after the 4th depending where the new if is.
Finally Learning C#! Thanks to you I am enjoying it. 🙂
YOU SOB…. you explained this better than any other tutorial i watched on if else statements :/ i love you!!!
Can you make this even more interesting by adding another 4th option when all check boxes are checked with brand new message. Like, “You Cant check both”. I have little problem how to convert 1st Hello bool value to false. Or do I have to do it? How can we combine multiple bool values true and false and what is the final result?
Why do you hate me? D:
thanks this helped a lot
im trying to make the if statment work in a console project but it just keep saying im wrong
what to do?
Great tutorial, I understood everthing clearly.