if then vs select case

20
[email protected] Electro-Team Interesting Education If Then VS Select Case

Upload: it-big-dig

Post on 17-Aug-2015

24 views

Category:

Documents


3 download

TRANSCRIPT

[email protected]

Electro-TeamInteresting Education

If Then VS Select Case

Football Calculator

Program Inputs:

1st Team name.

2nd Team name.

Match result.

Program Output:

Number of points for each team.

Open new project

Add 8 Labels,2 TextBoxes,2 Buttons & 2 NumericUpDown

Modify Font Property

Modify Form1 properties

Chang Text property of Button1 = Clear & Button2 = Exit

TextBox1

TextBox2

The Select Case...End Select Structure

Select Case Test Expression

   Case expression        

Block of one or more VB statements 

   Case expression

        Block of one or more VB Statements 

           .      

   Case Else 

        Block of one or more VB Statements

End Select

Replace IF structure with Select Case structure

You will just have to modify code of NumericUpDown1 & NumericUPDown2

IF…ThenSelect Case

The End

Produced by

Electro-Team