SlideShare a Scribd company logo
2
Most read
3
Most read
4
Most read
VISUAL BASIC
SELECT…CASE:
Select case is also called as switch
case . Select…case structure is a
alternative of a If..Then..ElseIf
statement.
A select..case statement work with
single test expression.
 If there is match then it execute a
block of statement else if no matches
found then statement associated with
optional case else statement are
execute.
SYNTAX:
Select case<Test Expression>
case<expression list1>
statement
case<expression list2>
statement
case<expression list3>
statement
case else
statement
End select
EXAMPLE:
 Private Sub Command1_Click()
b = Val(Text1.Text)
Select Case b
Case 75 To 100
MsgBox ("distinction")
Case 60 To 74
MsgBox ("Firstclass")
Case 55 To 59
MsgBox ("highersecond class")
Case 40 To 54
MsgBox ("pass")
Case 0 To 39
MsgBox ("fail")
Case Else
MsgBox "Invalid average marks"
End Select
End Sub
Thank You!!!

More Related Content

PPTX
Decision statements in vb.net
PPTX
Decision Making and Looping
PPT
Control structure
PPTX
Statements and Conditions in PHP
PPTX
datatypes and variables in c language
PPSX
Break and continue
PPTX
Basic Input and Output
PPT
Using macros in microsoft excel part 1
Decision statements in vb.net
Decision Making and Looping
Control structure
Statements and Conditions in PHP
datatypes and variables in c language
Break and continue
Basic Input and Output
Using macros in microsoft excel part 1

What's hot (20)

PPTX
python conditional statement.pptx
PDF
Wrapper classes
PPSX
Conditional statement
PPTX
02 data types in java
PPTX
If and select statement
PPTX
Input Output Management In C Programming
PPTX
Nested loops
PPTX
Looping Statements and Control Statements in Python
PDF
itft-Decision making and branching in java
PPT
9. Input Output in java
PPSX
Javascript variables and datatypes
PPTX
Javascript alert and confrim box
PDF
basic of desicion control statement in python
PPTX
Java Decision Control
PPTX
What are variables and keywords in c++
PPTX
Javascript conditional statements
PPT
Introduction to Python
PPTX
Pseudocode
PPT
Decision Making and Branching in C
PPTX
Inheritance in oops
python conditional statement.pptx
Wrapper classes
Conditional statement
02 data types in java
If and select statement
Input Output Management In C Programming
Nested loops
Looping Statements and Control Statements in Python
itft-Decision making and branching in java
9. Input Output in java
Javascript variables and datatypes
Javascript alert and confrim box
basic of desicion control statement in python
Java Decision Control
What are variables and keywords in c++
Javascript conditional statements
Introduction to Python
Pseudocode
Decision Making and Branching in C
Inheritance in oops
Ad

Viewers also liked (7)

PPT
Ppt lesson 10
PPT
Ppt lesson 11
PPTX
Chapter 3 — Program Design and Coding
PDF
A Detailed Introduction: American Accent Training with Language~Loops
PPTX
Chapter 2 — Program and Graphical User Interface Design
PPTX
Introduction to VB.NET - UP SITF
PPT
Visual basic ppt for tutorials computer
Ppt lesson 10
Ppt lesson 11
Chapter 3 — Program Design and Coding
A Detailed Introduction: American Accent Training with Language~Loops
Chapter 2 — Program and Graphical User Interface Design
Introduction to VB.NET - UP SITF
Visual basic ppt for tutorials computer
Ad

Similar to Select case (12)

PPTX
week 3 Programming lecture 05 (1) j.pptx
PPTX
Decision statements
PPT
Lecture 3
PPTX
If and select statement
PPTX
Constructs (Programming Methodology)
PDF
Chapter 8 - Conditional Statement
PPTX
Decision making
PPT
Control structures in C++ Programming Language
PPTX
Selection statements
PPTX
Chapter 4 java
PPTX
CONTROL STRUCTURE IN VB
PPTX
Using decision statements
week 3 Programming lecture 05 (1) j.pptx
Decision statements
Lecture 3
If and select statement
Constructs (Programming Methodology)
Chapter 8 - Conditional Statement
Decision making
Control structures in C++ Programming Language
Selection statements
Chapter 4 java
CONTROL STRUCTURE IN VB
Using decision statements

Recently uploaded (20)

PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
iTop VPN Free 5.6.0.5262 Crack latest version 2025
PPTX
Patient Appointment Booking in Odoo with online payment
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PPTX
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
PDF
Digital Systems & Binary Numbers (comprehensive )
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
Oracle Fusion HCM Cloud Demo for Beginners
PDF
Autodesk AutoCAD Crack Free Download 2025
PDF
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
PDF
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
PDF
CapCut Video Editor 6.8.1 Crack for PC Latest Download (Fully Activated) 2025
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PPTX
Advanced SystemCare Ultimate Crack + Portable (2025)
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PPTX
Weekly report ppt - harsh dattuprasad patel.pptx
PDF
Cost to Outsource Software Development in 2025
PDF
iTop VPN Crack Latest Version Full Key 2025
PDF
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
wealthsignaloriginal-com-DS-text-... (1).pdf
iTop VPN Free 5.6.0.5262 Crack latest version 2025
Patient Appointment Booking in Odoo with online payment
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
Digital Systems & Binary Numbers (comprehensive )
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Oracle Fusion HCM Cloud Demo for Beginners
Autodesk AutoCAD Crack Free Download 2025
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
CapCut Video Editor 6.8.1 Crack for PC Latest Download (Fully Activated) 2025
Odoo Companies in India – Driving Business Transformation.pdf
Navsoft: AI-Powered Business Solutions & Custom Software Development
Advanced SystemCare Ultimate Crack + Portable (2025)
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Weekly report ppt - harsh dattuprasad patel.pptx
Cost to Outsource Software Development in 2025
iTop VPN Crack Latest Version Full Key 2025
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency

Select case

  • 2. SELECT…CASE: Select case is also called as switch case . Select…case structure is a alternative of a If..Then..ElseIf statement. A select..case statement work with single test expression.  If there is match then it execute a block of statement else if no matches found then statement associated with optional case else statement are execute.
  • 3. SYNTAX: Select case<Test Expression> case<expression list1> statement case<expression list2> statement case<expression list3> statement case else statement End select
  • 4. EXAMPLE:  Private Sub Command1_Click() b = Val(Text1.Text) Select Case b Case 75 To 100 MsgBox ("distinction") Case 60 To 74 MsgBox ("Firstclass") Case 55 To 59 MsgBox ("highersecond class") Case 40 To 54 MsgBox ("pass") Case 0 To 39 MsgBox ("fail") Case Else MsgBox "Invalid average marks" End Select End Sub