SlideShare a Scribd company logo
1 of 26
Working with
        Comparison
         Operators


Jesselle Capa

Charles Justine Bool
Comparison Operators
Operators that compare data values
  to produce true or false results.



            ASCII
 Contains a list of characters with
  corresponding unique numeric
         representation
Comparison Operators
Operator         Usage                           Description
   >       lblSales.Caption >   The greater than operator return True Only
           Goal                 if the value on the right.
   <       Pay < 2000.0         The less than operator return True if the
                                value on the left of < is less than the value
                                on the right.
   =       Age = Limit          The equal to operator return True if the
                                value on the both sides of = are equal.
  >=       FirstName >=         The greater than or equal to operator
           “Mike”               return True if the value on the left of >= is
                                greater than or equal to the value on the
                                right.
  <=       Num <=               The less than or equal to operator return
           lblAmt.Caption       True if the value on the left of <= is less
                                than or equal to the value on the right.
  <>       txtAns.text<>        The not equal to operator return True if the
           “Yes”                value on the left of <> is unequal to the
                                value on the right.
Relationship Results
        Relation             Result
          2>1                 True
          3<3                False
         5 > 10               True
   “Apple” <= “Orange”        True
“Macdonald “ < “Mc Donald”    True
          0 >=0               True
          0 <=0               True
          1 <>2               True
          2 >=3              False
Working with If Statement
   The If statement provides logic for the
    application, w/c analyzes data and makes
    decisions based on the analysis.

   The If statement uses comparison operators
    to test data values and performs one of two
    possible actions based on the results of the
    comparison‟s test.

   Without the If statement, the application
    code will sequentially execute . Meaning , one
    statement is executed after another.
The If statement is usually
written in the following
format:

     If comparisonTest Then

          One or more statements

     End If
If Statement and Comparison
   Keep in mind that the body of the If
    statement executes based on the results of
    the comparison test. The statement executes
    if the results is true. Otherwise , the rest of
    the application executes as usual and the If
    statement will be skipped.

   Data that are entered into a text box control
    is treated as a Variant data type . When
    arithmetic is performed with a Variant with
    data type that holds a numeric value . Visual
    Basic will convert such data to a number for
    the calculation purposes.
The If statement's Else Branching

   The If statement with Else is usually written in
    the following format:

            If comparisontest Then

                   one   or   more statements

            Else

                   one   or   more statements

            End If
Compound Comparison with the
         Logical Operators

Operator         Usage                  Description


  And      If (A > B) And (C <   Returns True if both sides
                    D)           of the And are true.


   Or      If (A > B) Or (C <    Returns True if either side
                   D)            of the Or is true.



  Not        If Not (strAns =    Returns the opposite true
                   “Yes”)        or false result.
Example :
Private Sub cmdGetStudentGrade_Click()

„Code for Generating Student's Grade
„Declare Variables
Dim percent As Integer, studentmark As String

„Clear text Box
   txtGrade.Text = ""

„Get Students Mark from inputbox
   percent = InputBox("Enter Students
  Percent")
'Begin if statement
   If percent >= 50 And percent < 60 Then
      studentmark = "C"
   Else percent >= 60 And percent < 70 Then
      studentmark = "B"
   Else percent >= 70 Then
      studentmark = "A"
   Else
      studentmark = "FAIL"
   End If

'Display Output
   txtGrade.Text = studentmark
End Sub
Nesting If-Else Statements

If (intAge = 5) Then
  lblTitle.Caption = “Kindergarten”
Else
  If (intAge = 6) Then
      lblTitle.Caption = “1st Grade”
  Else
      If (intAge = 7) Then
            lblTitle.Caption = “2nd Grade”
If (intAge = 8) Then
      lblTitle.Caption = “3rd Grade”
Else
     If (intAge = 9) Then
           lblTitle.Caption = “4th Grade”
     Else
          If (intAge = 10) Then
              lblTitle.Caption = “5th Grade”
          Else
               If (intAge = 11) Then
                  lblTitle.Caption = “6th Grade”
               Else
lblTitle.Caption   = "Advanced"
                 End If
             End If
          End If
       End If
     End If
  End If
End If
Using Select Case Statement
   The Select Case Statement handles multiple –
    choice conditions better than If-Else . When
    several choices are possible , programmers
    usually use Select Case as a substitute for
    long , nested If-Else , but you may find out
    that it is easier to code and to maintain .
    However , you must avoid using the Select
    Case if you will have a simple If or If-
    Else for the code , unless you need to
    compare against more than two values .
    Otherwise , stick with the simple If and If-
    Else statements
Select Case intAge
 Case 5 : lblTitle.Caption = "Kindergarten"
 Case 6 : lblTitle.Caption = "1st Grade"
 Case 7 : lblTitle.Caption = "2nd Grade"
 Case 8 : lblTitle.Caption = "3rd Grade"
 Case 9 : lblTitle.Caption = "4th Grade"
 Case 10 : lblTitle.Caption = "5th Grade
 Case 11 : lblTitle.Caption = "6th Grade
 Case Else : lblTitle.Caption = "Advanced"
End Select
3 Select Case Optional Formats:
   Select Case Expressions
    Case Is Relation :
       One or more Statements
     Case Is Relation :
       One or more Statements
    [Case Is Relation :
       One or more Statements]
    [Case Is Relation :
       One or more Statements]
   End Else
Select Case Expressions
 Case Value
     One or more Visual   Basic Statements
 Case Value
     One or more Visual   Basic Statements
 [Case Value
     One or more Visual   Basic Statements]
 [Case Value
     One or more Visual   Basic Statements]

End Else
Select Case Expressions

   Case expr1 To expr2 :
     One or more Visual Basic   Statements
   Case expr1 To expr2 :
     One or more Visual Basic   Statements
   [Case expr1 To expr2 :
     One or more Visual Basic   Statements]
   [Case Else :
     One or more Visual Basic   Statements]

End Else
Working with comparison operators
Working with comparison operators
Working with comparison operators
Working with comparison operators

More Related Content

What's hot

1.6 Absolute Value Equations and Inequalities
1.6 Absolute Value Equations and Inequalities1.6 Absolute Value Equations and Inequalities
1.6 Absolute Value Equations and Inequalitiesleblance
 
Presentation on Karnaugh Map
Presentation  on Karnaugh MapPresentation  on Karnaugh Map
Presentation on Karnaugh MapKawsar Ahmed
 
Binary Operation Boolean Logic
Binary Operation Boolean LogicBinary Operation Boolean Logic
Binary Operation Boolean LogicGaditek
 
Trigonometric ratios and identities 1
Trigonometric ratios and identities 1Trigonometric ratios and identities 1
Trigonometric ratios and identities 1Sudersana Viswanathan
 
Chapter 06 boolean algebra
Chapter 06 boolean algebraChapter 06 boolean algebra
Chapter 06 boolean algebraIIUI
 
ppt for Properties of the Operations on Integers
ppt for Properties of the Operations on Integersppt for Properties of the Operations on Integers
ppt for Properties of the Operations on Integersneria_ayren
 
Lesson plan for x and dividing by 10, 100, 1000
Lesson plan for x and dividing by 10, 100, 1000Lesson plan for x and dividing by 10, 100, 1000
Lesson plan for x and dividing by 10, 100, 1000Angela Phillips
 

What's hot (8)

1.6 Absolute Value Equations and Inequalities
1.6 Absolute Value Equations and Inequalities1.6 Absolute Value Equations and Inequalities
1.6 Absolute Value Equations and Inequalities
 
Presentation on Karnaugh Map
Presentation  on Karnaugh MapPresentation  on Karnaugh Map
Presentation on Karnaugh Map
 
Binary Operation Boolean Logic
Binary Operation Boolean LogicBinary Operation Boolean Logic
Binary Operation Boolean Logic
 
Trigonometric ratios and identities 1
Trigonometric ratios and identities 1Trigonometric ratios and identities 1
Trigonometric ratios and identities 1
 
Chapter 06 boolean algebra
Chapter 06 boolean algebraChapter 06 boolean algebra
Chapter 06 boolean algebra
 
ppt for Properties of the Operations on Integers
ppt for Properties of the Operations on Integersppt for Properties of the Operations on Integers
ppt for Properties of the Operations on Integers
 
Solving absolute values
Solving absolute valuesSolving absolute values
Solving absolute values
 
Lesson plan for x and dividing by 10, 100, 1000
Lesson plan for x and dividing by 10, 100, 1000Lesson plan for x and dividing by 10, 100, 1000
Lesson plan for x and dividing by 10, 100, 1000
 

Similar to Working with comparison operators

03a control structures
03a   control structures03a   control structures
03a control structuresManzoor ALam
 
CIS 1403 lab 4 selection
CIS 1403 lab 4 selectionCIS 1403 lab 4 selection
CIS 1403 lab 4 selectionHamad Odhabi
 
11-ScriptsAndConditionals.ppt
11-ScriptsAndConditionals.ppt11-ScriptsAndConditionals.ppt
11-ScriptsAndConditionals.pptAnjali127411
 
Advanced VB: Review of the basics
Advanced VB: Review of the basicsAdvanced VB: Review of the basics
Advanced VB: Review of the basicsrobertbenard
 
Advanced VB: Review of the basics
Advanced VB: Review of the basicsAdvanced VB: Review of the basics
Advanced VB: Review of the basicsrobertbenard
 
Ap Power Point Chpt3 B
Ap Power Point Chpt3 BAp Power Point Chpt3 B
Ap Power Point Chpt3 Bdplunkett
 
FLOW OF CONTROL-INTRO PYTHON
FLOW OF CONTROL-INTRO PYTHONFLOW OF CONTROL-INTRO PYTHON
FLOW OF CONTROL-INTRO PYTHONvikram mahendra
 
conditional statements.docx
conditional statements.docxconditional statements.docx
conditional statements.docxssuser2e84e4
 
05. Conditional Statements
05. Conditional Statements05. Conditional Statements
05. Conditional StatementsIntro C# Book
 
Absolute Java 5e Savitch Test Bank
Absolute Java 5e Savitch Test BankAbsolute Java 5e Savitch Test Bank
Absolute Java 5e Savitch Test BankLauriewest24
 
Loops and conditional statements
Loops and conditional statementsLoops and conditional statements
Loops and conditional statementsSaad Sheikh
 

Similar to Working with comparison operators (20)

03a control structures
03a   control structures03a   control structures
03a control structures
 
Perl_Part2
Perl_Part2Perl_Part2
Perl_Part2
 
CIS 1403 lab 4 selection
CIS 1403 lab 4 selectionCIS 1403 lab 4 selection
CIS 1403 lab 4 selection
 
Chapter 04
Chapter 04Chapter 04
Chapter 04
 
11-ScriptsAndConditionals.ppt
11-ScriptsAndConditionals.ppt11-ScriptsAndConditionals.ppt
11-ScriptsAndConditionals.ppt
 
Advanced VB: Review of the basics
Advanced VB: Review of the basicsAdvanced VB: Review of the basics
Advanced VB: Review of the basics
 
Advanced VB: Review of the basics
Advanced VB: Review of the basicsAdvanced VB: Review of the basics
Advanced VB: Review of the basics
 
Using decision statements
Using decision statementsUsing decision statements
Using decision statements
 
Ch05-converted.pptx
Ch05-converted.pptxCh05-converted.pptx
Ch05-converted.pptx
 
Ch05.pdf
Ch05.pdfCh05.pdf
Ch05.pdf
 
MS Excel 2010 tutorial 5
MS Excel 2010 tutorial 5MS Excel 2010 tutorial 5
MS Excel 2010 tutorial 5
 
Ap Power Point Chpt3 B
Ap Power Point Chpt3 BAp Power Point Chpt3 B
Ap Power Point Chpt3 B
 
Control All
Control AllControl All
Control All
 
Lecture 2
Lecture 2Lecture 2
Lecture 2
 
FLOW OF CONTROL-INTRO PYTHON
FLOW OF CONTROL-INTRO PYTHONFLOW OF CONTROL-INTRO PYTHON
FLOW OF CONTROL-INTRO PYTHON
 
Chap 4 c++
Chap 4 c++Chap 4 c++
Chap 4 c++
 
conditional statements.docx
conditional statements.docxconditional statements.docx
conditional statements.docx
 
05. Conditional Statements
05. Conditional Statements05. Conditional Statements
05. Conditional Statements
 
Absolute Java 5e Savitch Test Bank
Absolute Java 5e Savitch Test BankAbsolute Java 5e Savitch Test Bank
Absolute Java 5e Savitch Test Bank
 
Loops and conditional statements
Loops and conditional statementsLoops and conditional statements
Loops and conditional statements
 

More from Sara Corpuz

Title, heading and paragraph tags
Title, heading and paragraph tagsTitle, heading and paragraph tags
Title, heading and paragraph tagsSara Corpuz
 
Creating your 1st html page
Creating your 1st html pageCreating your 1st html page
Creating your 1st html pageSara Corpuz
 
Visual basic coding
Visual basic codingVisual basic coding
Visual basic codingSara Corpuz
 
Program logic formulation
Program logic formulationProgram logic formulation
Program logic formulationSara Corpuz
 
Flowcharting and pseudocoding
Flowcharting and pseudocodingFlowcharting and pseudocoding
Flowcharting and pseudocodingSara Corpuz
 
Working with visual basic applications
Working with visual basic applicationsWorking with visual basic applications
Working with visual basic applicationsSara Corpuz
 
Building visual basic application
Building visual basic applicationBuilding visual basic application
Building visual basic applicationSara Corpuz
 

More from Sara Corpuz (9)

Title, heading and paragraph tags
Title, heading and paragraph tagsTitle, heading and paragraph tags
Title, heading and paragraph tags
 
Creating your 1st html page
Creating your 1st html pageCreating your 1st html page
Creating your 1st html page
 
Visual basic coding
Visual basic codingVisual basic coding
Visual basic coding
 
Program logic formulation
Program logic formulationProgram logic formulation
Program logic formulation
 
Flowcharting and pseudocoding
Flowcharting and pseudocodingFlowcharting and pseudocoding
Flowcharting and pseudocoding
 
Working with visual basic applications
Working with visual basic applicationsWorking with visual basic applications
Working with visual basic applications
 
Building visual basic application
Building visual basic applicationBuilding visual basic application
Building visual basic application
 
Visual basic
Visual basicVisual basic
Visual basic
 
Logic
LogicLogic
Logic
 

Recently uploaded

Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 

Recently uploaded (20)

Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 

Working with comparison operators

  • 1. Working with Comparison Operators Jesselle Capa Charles Justine Bool
  • 2. Comparison Operators Operators that compare data values to produce true or false results. ASCII Contains a list of characters with corresponding unique numeric representation
  • 3. Comparison Operators Operator Usage Description > lblSales.Caption > The greater than operator return True Only Goal if the value on the right. < Pay < 2000.0 The less than operator return True if the value on the left of < is less than the value on the right. = Age = Limit The equal to operator return True if the value on the both sides of = are equal. >= FirstName >= The greater than or equal to operator “Mike” return True if the value on the left of >= is greater than or equal to the value on the right. <= Num <= The less than or equal to operator return lblAmt.Caption True if the value on the left of <= is less than or equal to the value on the right. <> txtAns.text<> The not equal to operator return True if the “Yes” value on the left of <> is unequal to the value on the right.
  • 4. Relationship Results Relation Result 2>1 True 3<3 False 5 > 10 True “Apple” <= “Orange” True “Macdonald “ < “Mc Donald” True 0 >=0 True 0 <=0 True 1 <>2 True 2 >=3 False
  • 5. Working with If Statement  The If statement provides logic for the application, w/c analyzes data and makes decisions based on the analysis.  The If statement uses comparison operators to test data values and performs one of two possible actions based on the results of the comparison‟s test.  Without the If statement, the application code will sequentially execute . Meaning , one statement is executed after another.
  • 6. The If statement is usually written in the following format: If comparisonTest Then One or more statements End If
  • 7. If Statement and Comparison  Keep in mind that the body of the If statement executes based on the results of the comparison test. The statement executes if the results is true. Otherwise , the rest of the application executes as usual and the If statement will be skipped.  Data that are entered into a text box control is treated as a Variant data type . When arithmetic is performed with a Variant with data type that holds a numeric value . Visual Basic will convert such data to a number for the calculation purposes.
  • 8. The If statement's Else Branching  The If statement with Else is usually written in the following format: If comparisontest Then one or more statements Else one or more statements End If
  • 9. Compound Comparison with the Logical Operators Operator Usage Description And If (A > B) And (C < Returns True if both sides D) of the And are true. Or If (A > B) Or (C < Returns True if either side D) of the Or is true. Not If Not (strAns = Returns the opposite true “Yes”) or false result.
  • 10. Example : Private Sub cmdGetStudentGrade_Click() „Code for Generating Student's Grade „Declare Variables Dim percent As Integer, studentmark As String „Clear text Box txtGrade.Text = "" „Get Students Mark from inputbox percent = InputBox("Enter Students Percent")
  • 11. 'Begin if statement If percent >= 50 And percent < 60 Then studentmark = "C" Else percent >= 60 And percent < 70 Then studentmark = "B" Else percent >= 70 Then studentmark = "A" Else studentmark = "FAIL" End If 'Display Output txtGrade.Text = studentmark End Sub
  • 12.
  • 13.
  • 14.
  • 15. Nesting If-Else Statements If (intAge = 5) Then lblTitle.Caption = “Kindergarten” Else If (intAge = 6) Then lblTitle.Caption = “1st Grade” Else If (intAge = 7) Then lblTitle.Caption = “2nd Grade”
  • 16. If (intAge = 8) Then lblTitle.Caption = “3rd Grade” Else If (intAge = 9) Then lblTitle.Caption = “4th Grade” Else If (intAge = 10) Then lblTitle.Caption = “5th Grade” Else If (intAge = 11) Then lblTitle.Caption = “6th Grade” Else
  • 17. lblTitle.Caption = "Advanced" End If End If End If End If End If End If End If
  • 18. Using Select Case Statement  The Select Case Statement handles multiple – choice conditions better than If-Else . When several choices are possible , programmers usually use Select Case as a substitute for long , nested If-Else , but you may find out that it is easier to code and to maintain . However , you must avoid using the Select Case if you will have a simple If or If- Else for the code , unless you need to compare against more than two values . Otherwise , stick with the simple If and If- Else statements
  • 19. Select Case intAge Case 5 : lblTitle.Caption = "Kindergarten" Case 6 : lblTitle.Caption = "1st Grade" Case 7 : lblTitle.Caption = "2nd Grade" Case 8 : lblTitle.Caption = "3rd Grade" Case 9 : lblTitle.Caption = "4th Grade" Case 10 : lblTitle.Caption = "5th Grade Case 11 : lblTitle.Caption = "6th Grade Case Else : lblTitle.Caption = "Advanced" End Select
  • 20. 3 Select Case Optional Formats: Select Case Expressions Case Is Relation : One or more Statements Case Is Relation : One or more Statements [Case Is Relation : One or more Statements] [Case Is Relation : One or more Statements] End Else
  • 21. Select Case Expressions Case Value One or more Visual Basic Statements Case Value One or more Visual Basic Statements [Case Value One or more Visual Basic Statements] [Case Value One or more Visual Basic Statements] End Else
  • 22. Select Case Expressions Case expr1 To expr2 : One or more Visual Basic Statements Case expr1 To expr2 : One or more Visual Basic Statements [Case expr1 To expr2 : One or more Visual Basic Statements] [Case Else : One or more Visual Basic Statements] End Else