If Else .. Select Case in VB.NET

Shyam Sir
Shyam SirTeaching programming em Aspiration
Decision making
1
Shyam N. Chawda +91 78 74 39 11 91
It’s decide the flow of program
2 types
• Branching statements, Test Structure, Decision
Structure
• Loop statements
2
Shyam N. Chawda 9374928879
Branching Statements
• If, Select case
Loop Statements
• For,Do,While
3
Shyam N. Chawda 9374928879
If condition Then
Logic…
End if
If condition Then
Logic…
Else
Logic….
End if
If condition Then
Logic…
ElseIf condition-n Then
Logic..
Else
Logic…
End If
4
Shyam N. Chawda 9374928879
If TotalMarks>150 then
Logic..
End if
If a=b then
Logic..
Else
Logic..
End if
If Marks>0 and Marks<50 then
Logic..
Else if Marks>=50 and Marks<100
then
Logic..
Else if Marks>=100 and Marks<150
then
Logic..
End if
5
Shyam N. Chawda 9374928879
When it finds a True condition
Else statement block, which Visual
Basic.net executes if none of the conditions
are True.
You can have any number of ElseIf
6
Shyam N. Chawda 9374928879
 You can use And / Or condition with it.
 Example:
If marks>50 and marks<100 then
statements
Else if marks>=100 and marks<150 then
statements
End if
7
Shyam N. Chawda 9374928879
Leap Year
Odd,Even
Positive ,Negative
Maximum,Minimum number
Mark of students
• Between 0 - 50,50 –100 ,100-150
8
Shyam N. Chawda 9374928879
Whereas the If and ElseIf statements
can evaluate a different expression in
each statement,
The Select statement evaluates a
single expression only once and uses
it for every comparison.
9
Shyam N. Chawda 9374928879
Select Case testexpression
[Case expressionlist-n
[statements-n]] ...
[Case Else
[elsestatements]]
End Select
10
Shyam N. Chawda 9374928879
Select Performance
Case 1 ' Performance is 1.
Return Salary * 0.1
Case 2, 3 ' Performance is 2 or 3.
Return Salary * 0.09
Case 5 To 7 ' Performance is 5, 6, or 7.
Return Salary * 0.07
11
Shyam N. Chawda 9374928879
Case 4, 8 To 10 ‘Performance is 4, 8, 9, or 10.
Return Salary * 0.05
Case Is < 14 'Performance is 11, 12, 13.
Return 100
Case Else ' Performance is < 1 or > 14.
Return 0
End select
12
Shyam N. Chawda 9374928879
Select Case JobPlace
Case “Ahmedabad”
logic…
Case “Mumbai”,”Delhi”,”Chennai”
logic..
Case Else
logic..
End select 13
Shyam N. Chawda 9374928879
If multiple Case statements are True,
only the statements belonging to the
first true Case statement are
executed.
Case Else clause must be the last
Case clause.
14
Shyam N. Chawda 9374928879
Use the To keyword to specify a
range of values.
The Is keyword is used to precede
any comparison operators.
15
Shyam N. Chawda 9374928879
Enter Color name and according
to it textbox color will change
Enter student no according to no
display message “Good”,”Try best
in next exam”,”Need to improve”
16
Shyam N. Chawda 9374928879
Any questions?
www.shyamsir.com
Shyam N. Chawda 9374928879 17
1 de 17

Recomendados

CSI-503 - 11.Distributed Operating System por
CSI-503 - 11.Distributed Operating SystemCSI-503 - 11.Distributed Operating System
CSI-503 - 11.Distributed Operating Systemghayour abbas
448 visualizações9 slides
Decision making in JAVA por
Decision making in JAVADecision making in JAVA
Decision making in JAVAHamna_sheikh
1.4K visualizações10 slides
Object Oriented Methodology in Java (Lecture-1) por
Object Oriented Methodology in Java (Lecture-1)Object Oriented Methodology in Java (Lecture-1)
Object Oriented Methodology in Java (Lecture-1)Md. Mujahid Islam
2.2K visualizações24 slides
what is java? por
  what is java?  what is java?
what is java?Binary Informatics
471 visualizações17 slides
Control Statements in Java por
Control Statements in JavaControl Statements in Java
Control Statements in JavaNiloy Saha
19.2K visualizações32 slides
Architecture of operating system por
Architecture of operating systemArchitecture of operating system
Architecture of operating systemSupriya Kumari
73.9K visualizações13 slides

Mais conteúdo relacionado

Mais procurados

Operating systems por
Operating systemsOperating systems
Operating systemsUjjwal 'Shanu'
41.2K visualizações40 slides
JAVA PPT by NAVEEN TOKAS por
JAVA PPT by NAVEEN TOKASJAVA PPT by NAVEEN TOKAS
JAVA PPT by NAVEEN TOKASNAVEEN TOKAS
1.2K visualizações15 slides
Java byte code presentation por
Java byte code presentationJava byte code presentation
Java byte code presentationMahnoor Hashmi
1.3K visualizações13 slides
Operating system por
Operating systemOperating system
Operating systemyogitamore3
5.1K visualizações40 slides
Strings in Java por
Strings in JavaStrings in Java
Strings in JavaAbhilash Nair
21K visualizações23 slides
SQL Complete Tutorial. All Topics Covered por
SQL Complete Tutorial. All Topics CoveredSQL Complete Tutorial. All Topics Covered
SQL Complete Tutorial. All Topics CoveredDanish Mehraj
735 visualizações101 slides

Mais procurados(20)

Operating systems por Ujjwal 'Shanu'
Operating systemsOperating systems
Operating systems
Ujjwal 'Shanu'41.2K visualizações
JAVA PPT by NAVEEN TOKAS por NAVEEN TOKAS
JAVA PPT by NAVEEN TOKASJAVA PPT by NAVEEN TOKAS
JAVA PPT by NAVEEN TOKAS
NAVEEN TOKAS1.2K visualizações
Java byte code presentation por Mahnoor Hashmi
Java byte code presentationJava byte code presentation
Java byte code presentation
Mahnoor Hashmi1.3K visualizações
Operating system por yogitamore3
Operating systemOperating system
Operating system
yogitamore35.1K visualizações
Strings in Java por Abhilash Nair
Strings in JavaStrings in Java
Strings in Java
Abhilash Nair21K visualizações
SQL Complete Tutorial. All Topics Covered por Danish Mehraj
SQL Complete Tutorial. All Topics CoveredSQL Complete Tutorial. All Topics Covered
SQL Complete Tutorial. All Topics Covered
Danish Mehraj735 visualizações
CBSE XII Database Concepts And MySQL Presentation por Guru Ji
CBSE XII Database Concepts And MySQL PresentationCBSE XII Database Concepts And MySQL Presentation
CBSE XII Database Concepts And MySQL Presentation
Guru Ji94.6K visualizações
Java Development Kit (jdk) por Jadavsejal
Java Development Kit (jdk)Java Development Kit (jdk)
Java Development Kit (jdk)
Jadavsejal1.6K visualizações
JDBC – Java Database Connectivity por Information Technology
JDBC – Java Database ConnectivityJDBC – Java Database Connectivity
JDBC – Java Database Connectivity
Information Technology9.8K visualizações
java-Unit4 chap2- awt controls and layout managers of applet por raksharao
java-Unit4 chap2- awt controls and layout managers of appletjava-Unit4 chap2- awt controls and layout managers of applet
java-Unit4 chap2- awt controls and layout managers of applet
raksharao1.7K visualizações
Data base security & integrity por Pooja Dixit
Data base security &  integrityData base security &  integrity
Data base security & integrity
Pooja Dixit753 visualizações
Java: GUI por Tareq Hasan
Java: GUIJava: GUI
Java: GUI
Tareq Hasan6.5K visualizações
Structure of dbms por Megha yadav
Structure of dbmsStructure of dbms
Structure of dbms
Megha yadav2.3K visualizações
Advance Java Topics (J2EE) por slire
Advance Java Topics (J2EE)Advance Java Topics (J2EE)
Advance Java Topics (J2EE)
slire35.1K visualizações
Control structures in java por VINOTH R
Control structures in javaControl structures in java
Control structures in java
VINOTH R6.1K visualizações
SQL - Structured query language introduction por Smriti Jain
SQL - Structured query language introductionSQL - Structured query language introduction
SQL - Structured query language introduction
Smriti Jain52.8K visualizações
Ubuntu OS Presentation por Loren Schwappach
Ubuntu OS PresentationUbuntu OS Presentation
Ubuntu OS Presentation
Loren Schwappach27.5K visualizações
Wrapper classes por Ravi_Kant_Sahu
Wrapper classesWrapper classes
Wrapper classes
Ravi_Kant_Sahu4.3K visualizações
PL/SQL Complete Tutorial. All Topics Covered por Danish Mehraj
PL/SQL Complete Tutorial. All Topics CoveredPL/SQL Complete Tutorial. All Topics Covered
PL/SQL Complete Tutorial. All Topics Covered
Danish Mehraj2.4K visualizações
Operating system- Introduction, Types and its Functions por Arunima Education Foundation
Operating system- Introduction, Types and  its FunctionsOperating system- Introduction, Types and  its Functions
Operating system- Introduction, Types and its Functions
Arunima Education Foundation3.5K visualizações

Destaque

Operators , Functions and Options in VB.NET por
Operators , Functions and Options in VB.NETOperators , Functions and Options in VB.NET
Operators , Functions and Options in VB.NETShyam Sir
2.2K visualizações28 slides
Prolog -Cpt114 - Week3 por
Prolog -Cpt114 - Week3Prolog -Cpt114 - Week3
Prolog -Cpt114 - Week3a_akhavan
786 visualizações50 slides
Part2 database connection service based using vb.net por
Part2 database connection service based using vb.netPart2 database connection service based using vb.net
Part2 database connection service based using vb.netGirija Muscut
1.2K visualizações12 slides
Logical Programming With ruby-prolog por
Logical Programming With ruby-prologLogical Programming With ruby-prolog
Logical Programming With ruby-prologPreston Lee
3.7K visualizações12 slides
Presentation1 por
Presentation1Presentation1
Presentation1Liba Cheema
804 visualizações30 slides
Introduction to Science and Its Information Sources por
Introduction to Science and Its Information SourcesIntroduction to Science and Its Information Sources
Introduction to Science and Its Information SourcesKristy Padron
1K visualizações30 slides

Destaque(20)

Operators , Functions and Options in VB.NET por Shyam Sir
Operators , Functions and Options in VB.NETOperators , Functions and Options in VB.NET
Operators , Functions and Options in VB.NET
Shyam Sir2.2K visualizações
Prolog -Cpt114 - Week3 por a_akhavan
Prolog -Cpt114 - Week3Prolog -Cpt114 - Week3
Prolog -Cpt114 - Week3
a_akhavan786 visualizações
Part2 database connection service based using vb.net por Girija Muscut
Part2 database connection service based using vb.netPart2 database connection service based using vb.net
Part2 database connection service based using vb.net
Girija Muscut1.2K visualizações
Logical Programming With ruby-prolog por Preston Lee
Logical Programming With ruby-prologLogical Programming With ruby-prolog
Logical Programming With ruby-prolog
Preston Lee3.7K visualizações
Presentation1 por Liba Cheema
Presentation1Presentation1
Presentation1
Liba Cheema804 visualizações
Introduction to Science and Its Information Sources por Kristy Padron
Introduction to Science and Its Information SourcesIntroduction to Science and Its Information Sources
Introduction to Science and Its Information Sources
Kristy Padron1K visualizações
Part 3 binding navigator vb.net por Girija Muscut
Part 3 binding navigator vb.netPart 3 binding navigator vb.net
Part 3 binding navigator vb.net
Girija Muscut1.3K visualizações
Debugging in visual studio (basic level) por Larry Nung
Debugging in visual studio (basic level)Debugging in visual studio (basic level)
Debugging in visual studio (basic level)
Larry Nung1K visualizações
Cognitive information science por S. Kate Devitt
Cognitive information scienceCognitive information science
Cognitive information science
S. Kate Devitt595 visualizações
Python Tools for Visual Studio: Python na Microsoftovom .NET-u por Nikola Plejic
Python Tools for Visual Studio: Python na Microsoftovom .NET-uPython Tools for Visual Studio: Python na Microsoftovom .NET-u
Python Tools for Visual Studio: Python na Microsoftovom .NET-u
Nikola Plejic889 visualizações
Part 5 create sequence increment value using negative value por Girija Muscut
Part 5 create sequence increment value using negative valuePart 5 create sequence increment value using negative value
Part 5 create sequence increment value using negative value
Girija Muscut288 visualizações
How Not To Be Seen por Mark Pesce
How Not To Be SeenHow Not To Be Seen
How Not To Be Seen
Mark Pesce813 visualizações
Introduction to XML por shannonsdavis
Introduction to XMLIntroduction to XML
Introduction to XML
shannonsdavis605 visualizações
What&rsquo;s new in Visual C++ por Microsoft
What&rsquo;s new in Visual C++What&rsquo;s new in Visual C++
What&rsquo;s new in Visual C++
Microsoft1K visualizações
Vb.net session 15 por Niit Care
Vb.net session 15Vb.net session 15
Vb.net session 15
Niit Care1.1K visualizações
Part 1 picturebox using vb.net por Girija Muscut
Part 1 picturebox using vb.netPart 1 picturebox using vb.net
Part 1 picturebox using vb.net
Girija Muscut777 visualizações
Making Information Usable: The Art & Science of Information Design por Hubbard One
Making Information Usable: The Art & Science of Information DesignMaking Information Usable: The Art & Science of Information Design
Making Information Usable: The Art & Science of Information Design
Hubbard One948 visualizações
Pioneers of Information Science in Europe: The Oeuvre of Norbert Henrichs por Wolfgang Stock
Pioneers of Information Science in Europe: The Oeuvre of Norbert HenrichsPioneers of Information Science in Europe: The Oeuvre of Norbert Henrichs
Pioneers of Information Science in Europe: The Oeuvre of Norbert Henrichs
Wolfgang Stock1.7K visualizações
Transforming the world with Information technology por Glenn Klith Andersen
Transforming the world with Information technologyTransforming the world with Information technology
Transforming the world with Information technology
Glenn Klith Andersen2.4K visualizações

Mais de Shyam Sir

Mobile Application por
Mobile ApplicationMobile Application
Mobile ApplicationShyam Sir
492 visualizações72 slides
Hosting por
HostingHosting
HostingShyam Sir
321 visualizações77 slides
It new2015 por
It new2015It new2015
It new2015Shyam Sir
359 visualizações43 slides
State Management in ASP.NET por
State Management in ASP.NETState Management in ASP.NET
State Management in ASP.NETShyam Sir
2K visualizações75 slides
MVC First Basic por
MVC First BasicMVC First Basic
MVC First BasicShyam Sir
866 visualizações26 slides
Basic Concept of ASP.NET por
Basic Concept of ASP.NETBasic Concept of ASP.NET
Basic Concept of ASP.NETShyam Sir
511 visualizações19 slides

Mais de Shyam Sir(8)

Mobile Application por Shyam Sir
Mobile ApplicationMobile Application
Mobile Application
Shyam Sir492 visualizações
Hosting por Shyam Sir
HostingHosting
Hosting
Shyam Sir321 visualizações
It new2015 por Shyam Sir
It new2015It new2015
It new2015
Shyam Sir359 visualizações
State Management in ASP.NET por Shyam Sir
State Management in ASP.NETState Management in ASP.NET
State Management in ASP.NET
Shyam Sir2K visualizações
MVC First Basic por Shyam Sir
MVC First BasicMVC First Basic
MVC First Basic
Shyam Sir866 visualizações
Basic Concept of ASP.NET por Shyam Sir
Basic Concept of ASP.NETBasic Concept of ASP.NET
Basic Concept of ASP.NET
Shyam Sir511 visualizações
ASP.NET with VB.NET por Shyam Sir
 ASP.NET with VB.NET ASP.NET with VB.NET
ASP.NET with VB.NET
Shyam Sir1.1K visualizações
Master page and Theme ASP.NET with VB.NET por Shyam Sir
Master page and Theme ASP.NET with VB.NETMaster page and Theme ASP.NET with VB.NET
Master page and Theme ASP.NET with VB.NET
Shyam Sir1.7K visualizações

Último

GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N... por
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...James Anderson
142 visualizações32 slides
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... por
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc
130 visualizações29 slides
NTGapps NTG LowCode Platform por
NTGapps NTG LowCode Platform NTGapps NTG LowCode Platform
NTGapps NTG LowCode Platform Mustafa Kuğu
287 visualizações30 slides
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue por
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlueCloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlueShapeBlue
68 visualizações13 slides
20231123_Camunda Meetup Vienna.pdf por
20231123_Camunda Meetup Vienna.pdf20231123_Camunda Meetup Vienna.pdf
20231123_Camunda Meetup Vienna.pdfPhactum Softwareentwicklung GmbH
49 visualizações73 slides
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas... por
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...Bernd Ruecker
50 visualizações69 slides

Último(20)

GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N... por James Anderson
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
James Anderson142 visualizações
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... por TrustArc
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc130 visualizações
NTGapps NTG LowCode Platform por Mustafa Kuğu
NTGapps NTG LowCode Platform NTGapps NTG LowCode Platform
NTGapps NTG LowCode Platform
Mustafa Kuğu287 visualizações
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue por ShapeBlue
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlueCloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue
ShapeBlue68 visualizações
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas... por Bernd Ruecker
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
Bernd Ruecker50 visualizações
Business Analyst Series 2023 - Week 4 Session 7 por DianaGray10
Business Analyst Series 2023 -  Week 4 Session 7Business Analyst Series 2023 -  Week 4 Session 7
Business Analyst Series 2023 - Week 4 Session 7
DianaGray10110 visualizações
Updates on the LINSTOR Driver for CloudStack - Rene Peinthor - LINBIT por ShapeBlue
Updates on the LINSTOR Driver for CloudStack - Rene Peinthor - LINBITUpdates on the LINSTOR Driver for CloudStack - Rene Peinthor - LINBIT
Updates on the LINSTOR Driver for CloudStack - Rene Peinthor - LINBIT
ShapeBlue138 visualizações
Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ... por ShapeBlue
Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ...Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ...
Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ...
ShapeBlue121 visualizações
Digital Personal Data Protection (DPDP) Practical Approach For CISOs por Priyanka Aash
Digital Personal Data Protection (DPDP) Practical Approach For CISOsDigital Personal Data Protection (DPDP) Practical Approach For CISOs
Digital Personal Data Protection (DPDP) Practical Approach For CISOs
Priyanka Aash103 visualizações
KVM Security Groups Under the Hood - Wido den Hollander - Your.Online por ShapeBlue
KVM Security Groups Under the Hood - Wido den Hollander - Your.OnlineKVM Security Groups Under the Hood - Wido den Hollander - Your.Online
KVM Security Groups Under the Hood - Wido den Hollander - Your.Online
ShapeBlue154 visualizações
Future of AR - Facebook Presentation por Rob McCarty
Future of AR - Facebook PresentationFuture of AR - Facebook Presentation
Future of AR - Facebook Presentation
Rob McCarty54 visualizações
Igniting Next Level Productivity with AI-Infused Data Integration Workflows por Safe Software
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Safe Software373 visualizações
Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ... por ShapeBlue
Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ...Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ...
Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ...
ShapeBlue114 visualizações
Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates por ShapeBlue
Keynote Talk: Open Source is Not Dead - Charles Schulz - VatesKeynote Talk: Open Source is Not Dead - Charles Schulz - Vates
Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates
ShapeBlue178 visualizações
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue por ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlueElevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
ShapeBlue149 visualizações
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit... por ShapeBlue
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
ShapeBlue86 visualizações
VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlue por ShapeBlue
VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlueVNF Integration and Support in CloudStack - Wei Zhou - ShapeBlue
VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlue
ShapeBlue134 visualizações
Data Integrity for Banking and Financial Services por Precisely
Data Integrity for Banking and Financial ServicesData Integrity for Banking and Financial Services
Data Integrity for Banking and Financial Services
Precisely76 visualizações
Confidence in CloudStack - Aron Wagner, Nathan Gleason - Americ por ShapeBlue
Confidence in CloudStack - Aron Wagner, Nathan Gleason - AmericConfidence in CloudStack - Aron Wagner, Nathan Gleason - Americ
Confidence in CloudStack - Aron Wagner, Nathan Gleason - Americ
ShapeBlue58 visualizações

If Else .. Select Case in VB.NET

  • 1. Decision making 1 Shyam N. Chawda +91 78 74 39 11 91
  • 2. It’s decide the flow of program 2 types • Branching statements, Test Structure, Decision Structure • Loop statements 2 Shyam N. Chawda 9374928879
  • 3. Branching Statements • If, Select case Loop Statements • For,Do,While 3 Shyam N. Chawda 9374928879
  • 4. If condition Then Logic… End if If condition Then Logic… Else Logic…. End if If condition Then Logic… ElseIf condition-n Then Logic.. Else Logic… End If 4 Shyam N. Chawda 9374928879
  • 5. If TotalMarks>150 then Logic.. End if If a=b then Logic.. Else Logic.. End if If Marks>0 and Marks<50 then Logic.. Else if Marks>=50 and Marks<100 then Logic.. Else if Marks>=100 and Marks<150 then Logic.. End if 5 Shyam N. Chawda 9374928879
  • 6. When it finds a True condition Else statement block, which Visual Basic.net executes if none of the conditions are True. You can have any number of ElseIf 6 Shyam N. Chawda 9374928879
  • 7.  You can use And / Or condition with it.  Example: If marks>50 and marks<100 then statements Else if marks>=100 and marks<150 then statements End if 7 Shyam N. Chawda 9374928879
  • 8. Leap Year Odd,Even Positive ,Negative Maximum,Minimum number Mark of students • Between 0 - 50,50 –100 ,100-150 8 Shyam N. Chawda 9374928879
  • 9. Whereas the If and ElseIf statements can evaluate a different expression in each statement, The Select statement evaluates a single expression only once and uses it for every comparison. 9 Shyam N. Chawda 9374928879
  • 10. Select Case testexpression [Case expressionlist-n [statements-n]] ... [Case Else [elsestatements]] End Select 10 Shyam N. Chawda 9374928879
  • 11. Select Performance Case 1 ' Performance is 1. Return Salary * 0.1 Case 2, 3 ' Performance is 2 or 3. Return Salary * 0.09 Case 5 To 7 ' Performance is 5, 6, or 7. Return Salary * 0.07 11 Shyam N. Chawda 9374928879
  • 12. Case 4, 8 To 10 ‘Performance is 4, 8, 9, or 10. Return Salary * 0.05 Case Is < 14 'Performance is 11, 12, 13. Return 100 Case Else ' Performance is < 1 or > 14. Return 0 End select 12 Shyam N. Chawda 9374928879
  • 13. Select Case JobPlace Case “Ahmedabad” logic… Case “Mumbai”,”Delhi”,”Chennai” logic.. Case Else logic.. End select 13 Shyam N. Chawda 9374928879
  • 14. If multiple Case statements are True, only the statements belonging to the first true Case statement are executed. Case Else clause must be the last Case clause. 14 Shyam N. Chawda 9374928879
  • 15. Use the To keyword to specify a range of values. The Is keyword is used to precede any comparison operators. 15 Shyam N. Chawda 9374928879
  • 16. Enter Color name and according to it textbox color will change Enter student no according to no display message “Good”,”Try best in next exam”,”Need to improve” 16 Shyam N. Chawda 9374928879