SlideShare a Scribd company logo
Creating Windows Forms

Objectives
In this lesson, you will learn to:
Identify the features of Windows Forms
Identify various language features required to work with
Windows Forms
Identify various Windows Forms controls
Create Windows Forms




   ©NIIT                       Creating Windows Forms/Lesson 2/Slide 1 of 30
Creating Windows Forms

Understanding the User Interface
 A user interface is the means by which a user interacts with
  an application. A well-designed user interface is an
  effective means of making an application user-friendly.
 Types of User Interfaces
     Character user interface (CUI)
     Graphical user interface (GUI)




   ©NIIT                     Creating Windows Forms/Lesson 2/Slide 2 of 30
Creating Windows Forms

Windows Form
 Is a representation of any window displayed in an
  application.
 Is used to accept input from a user and display information.




   ©NIIT                    Creating Windows Forms/Lesson 2/Slide 3 of 30
Creating Windows Forms

Windows Forms (Contd.)
Windows Form properties:
    Are used to determine the appearance of a Windows
     Form at run time.
    Some commonly used properties are:
          ®Name
          ®BackColor
          ®BackgroundImage
          ®Font
          ®Size
          ®StartPosition
          ®Text
          ®WindowState
  ©NIIT                      Creating Windows Forms/Lesson 2/Slide 4 of 30
Creating Windows Forms

Windows Forms (Contd.)
Windows Forms events:
    Click
    Closed
    Deactivate
    Load
    MouseMove
    MouseDown
    MouseUp



  ©NIIT                  Creating Windows Forms/Lesson 2/Slide 5 of 30
Creating Windows Forms

Windows Forms (Contd.)
Windows Forms methods:
   Show()
   Activate()
   Close()
   SetDesktopLocation()




  ©NIIT                   Creating Windows Forms/Lesson 2/Slide 6 of 30
Creating Windows Forms

Visual Basic.NET Language Features
Data types:
    Byte
    Short
    Integer
    Long
    Single
    Double
    Decimal
    Boolean

  ©NIIT               Creating Windows Forms/Lesson 2/Slide 7 of 30
Creating Windows Forms

Visual Basic.NET Language Features (Contd.)
Data types: (Contd.)
    Char
    String
    Date
    Object




  ©NIIT                 Creating Windows Forms/Lesson 2/Slide 8 of 30
Creating Windows Forms

Visual Basic .NET Language Features (Contd.)
Variables
    Allow you to store data.
    Have a data type and a name.
    Can be declared by using the Dim statement.
Arrays
    Are collections of values of the same data type.
    Contain elements that can be accessed using a single
     name and an index number representing the position of
     the element within the array.


  ©NIIT                    Creating Windows Forms/Lesson 2/Slide 9 of 30
Creating Windows Forms

Visual Basic .NET Language Features (Contd.)
    Are declared using the following syntax:
     Dim arrayname(Number-of-elements) as
     datatype
    Can be resized using the Redim statement.
Operators
    Are used to process the data entered by a user.
    Can be categorized as follows:
          ®Arithmetic operators such as +, -, *, /, , and Mod
          ®Comparison operators such as =, , , =, =, and
           
          ®Logical operators such as And, Or, Not, and Xor
          ®Concatenation operators such as  and +
  ©NIIT                       Creating Windows Forms/Lesson 2/Slide 10 of 30
Creating Windows Forms

Visual Basic .NET Language Features (Contd.)
Control flow constructs
    Decision structures
           ®If-then-else
           ®Select case
    Loop structures
           ®While-End while
           ®Do-Loop
           ®For-Next
    Nested control statements

   ©NIIT                      Creating Windows Forms/Lesson 2/Slide 11 of 30
Creating Windows Forms

Just a Minute…
1. Write a loop structure to display all odd numbers between
   1 and 100.
2. Write the construct to check whether the character stored
   in the variable X is a vowel and display an appropriate
   message.




  ©NIIT                   Creating Windows Forms/Lesson 2/Slide 12 of 30
Creating Windows Forms

Problem Statement 2.D.1
For the Call Center application, a startup screen needs to be
provided to accept the user name and password. The
application should allow the user to enter the user name and
password for a maximum of three times. If in all of the three
attempts, a wrong user name and password is entered, the
application should display an error and close.




   ©NIIT                   Creating Windows Forms/Lesson 2/Slide 13 of 30
Creating Windows Forms

Task List
 Identify the variables required to store the values in the
  application.
 Identify the controls to be used for accepting input from the
  user.
 Identify the mechanism to validate the user input.
 Create a Windows Form.
 Add controls to the Windows Form.
 Write the code to validate the user input.
 Execute the application.



   ©NIIT                     Creating Windows Forms/Lesson 2/Slide 14 of 30
Creating Windows Forms

Task 1: Identify the variables required to store the
values in the application.
Result:
The variables required for accepting the login details from a
      user are:
    Counter
    Login Name
    Password




   ©NIIT                   Creating Windows Forms/Lesson 2/Slide 15 of 30
Creating Windows Forms

Task 2: Identify the controls to be used for accepting
input from the user.
Visual Basic .NET provides a number of controls that can be
 added to a form:
    TextBox
           ®Is used to display text to a user or accept input from
            a user.
           ®Has the following properties:
              ® Text

              ® Multiline

              ® Passwordchar


   ©NIIT                       Creating Windows Forms/Lesson 2/Slide 16 of 30
Creating Windows Forms

Task 2: Identify the controls to be used for accepting
input from the user. (Contd.)
    Label
          ®Is used to provide information or description of
           another control on the Windows Form.
          ®Has the following properties:
             ® Text
             ® AutoSize




  ©NIIT                       Creating Windows Forms/Lesson 2/Slide 17 of 30
Creating Windows Forms

Task 2: Identify the controls to be used for accepting
input from the user. (Contd.)
    LinkLabel
       ®Is used to display the text as a link.
       ®Has the following properties:
          ® LinkColor
          ® ActiveLinkColor
          ® DisabledLinkColor
          ® LinkVisited




  ©NIIT                    Creating Windows Forms/Lesson 2/Slide 18 of 30
Creating Windows Forms

Task 2: Identify the controls to be used for accepting
input from the user. (Contd.)
    ListBox
          ®Is used to display a list of items to a user.
          ®Can be populated by using the Add() method of the
           Items collection.
          ®Has the following properties:
             ® SelectionMode

             ® Sorted

             ® SelectedIndex

             ® SelectedItem

  ©NIIT                        Creating Windows Forms/Lesson 2/Slide 19 of 30
Creating Windows Forms

Task 2: Identify the controls to be used for accepting
input from the user. (Contd.)
    ComboBox
          ®Is used to display a drop-down list of items.
          ®Can be populated by using the Add() method of
           the Items collection.
          ®Has the following properties:
             ® Text

             ® Sorted

             ® SelectedIndex

             ® SelectedItem



  ©NIIT                       Creating Windows Forms/Lesson 2/Slide 20 of 30
Creating Windows Forms

Task 2: Identify the controls to be used for accepting
input from the user. (Contd.)
    CheckBox
          ®Is used to set Yes/No or True/false options.
          ®Has the following properties:
             ® Text

             ® Checked




  ©NIIT                      Creating Windows Forms/Lesson 2/Slide 21 of 30
Creating Windows Forms

Task 2: Identify the controls to be used for accepting
input from the user. (Contd.)
    RadioButton
          ®Is used to provide a set of mutually exclusive
           options to the user.
          ®Has the following properties:
             ® Text

             ® Checked




  ©NIIT                      Creating Windows Forms/Lesson 2/Slide 22 of 30
Creating Windows Forms

Task 2: Identify the controls to be used for accepting
input from the user. (Contd.)
    GroupBox
           ®Is used to group related controls.
    Button
           ®Is used to perform an action when a user clicks it.
           ®Has the Text property, which is used to set the text
            displayed on the button.
    StatusBar
           ®Is used to display the status information.
           ®Has the following properties:
              ® ShowPanels

              ® Text
   ©NIIT                       Creating Windows Forms/Lesson 2/Slide 23 of 30
Creating Windows Forms

Task 2: Identify the controls to be used for accepting
input from the user. (Contd.)
Some common properties found in most of the controls are:
    Name
    Visible
    Location
    Enabled




   ©NIIT                  Creating Windows Forms/Lesson 2/Slide 24 of 30
Creating Windows Forms

Task 2: Identify the controls to be used for accepting
input from the user. (Contd.)
Some common events found in most of the controls are:
    KeyDown
    KeyUp
    KeyPress
    MouseDown
    MouseUp
    MouseMove
    ReSize
    VisibleChanged



   ©NIIT                  Creating Windows Forms/Lesson 2/Slide 25 of 30
Creating Windows Forms

Task 2: Identify the controls to be used for accepting
input from the user. (Contd.)
Result:
You will use the following controls for the given problem
statement:
    Label
    TextBox
    Button




   ©NIIT                   Creating Windows Forms/Lesson 2/Slide 26 of 30
Creating Windows Forms

Task 3: Identify the mechanism to validate the user input.
Result:
The program should use the If-Then construct to validate
 the user name and the password. The If‑Then construct
 can also be used to ensure that value of the counter is not
 greater than 3.




   ©NIIT                   Creating Windows Forms/Lesson 2/Slide 27 of 30
Creating Windows Forms

Task 4: Create a Windows Form.
Task 5: Add controls to the Windows Form.
Task 6: Write the code to validate the user input.
Task 7: Execute the application.




   ©NIIT                  Creating Windows Forms/Lesson 2/Slide 28 of 30
Creating Windows Forms

Just a Minute…
You have created two forms named Form1 and Form2. Write
the code so that when a user clicks the OK button in Form1,
Form2 should be displayed.




   ©NIIT                  Creating Windows Forms/Lesson 2/Slide 29 of 30
Creating Windows Forms

Problem Statement 2.P.1
Diaz Telecommunications needs an application to accept
order details. The details to be accepted include order
number, date, customer ID, product ID, cost, and advance.
The product IDs should be displayed in a combo box. When
a user clicks the Save button after entering order details, the
application should verify that none of the fields is left blank
and display an appropriate message.




   ©NIIT                    Creating Windows Forms/Lesson 2/Slide 30 of 30
Creating Windows Forms

Summary
In this lesson, you learned that:
A form is used to accept input from the user and present
 information to the user.
An event gets generated on performing an action such as
 clicking the mouse or pressing a key from the keyboard.
When an event is raised, the code within the event handler
 is executed.
Variables are used to store data at run time. You can
 declare a variable by using the Dim statement.
The decision structures supported by Visual Basic .NET
 include:
      If-Then-Else
     Select-Case
   ©NIIT                     Creating Windows Forms/Lesson 2/Slide 31 of 30
Creating Windows Forms

Summary (Contd.)
 The loop structures supported by Visual Basic .NET are:
    While-End While
    Do-Loop
    For-Next
 Controls can be added to a form to accept input from the
  user or display some information on the form.
 Some commonly used controls are TextBox, Label,
  CheckBox, RadioButton, and Button.




   ©NIIT                   Creating Windows Forms/Lesson 2/Slide 32 of 30

More Related Content

PDF
Intake 37 9
PPTX
Chapter 03 - Program Coding and Design
PPS
Vb.net session 02
PDF
Intake 38 8
PPT
C# Tutorial MSM_Murach chapter-17-slides
PPTX
Controls events
PDF
Vb tutorial
PPTX
Chapter 1
Intake 37 9
Chapter 03 - Program Coding and Design
Vb.net session 02
Intake 38 8
C# Tutorial MSM_Murach chapter-17-slides
Controls events
Vb tutorial
Chapter 1

What's hot (7)

PPT
C# Tutorial MSM_Murach chapter-01-slides
PPT
Visual basic
PPTX
visual basic programming
PDF
Visual basic 6.0
PPTX
SPF WinForm Programs
PDF
Visual Basic IDE Introduction
PPTX
Visual Basic Controls ppt
C# Tutorial MSM_Murach chapter-01-slides
Visual basic
visual basic programming
Visual basic 6.0
SPF WinForm Programs
Visual Basic IDE Introduction
Visual Basic Controls ppt
Ad

Viewers also liked (20)

PPS
PPTX
Alexandra tobar v_cambio climatico en San Andres Islas
DOCX
Reflective essay
DOCX
Curriculum vitae rise
PDF
Proceso herrajes
DOCX
El inaceptable costo de los malos jefes
PPTX
Mantenimiento preventivo 2
PPTX
Presentacion Del Caso
PDF
PPS
Principio 90 10-__stephen_covey
PDF
Formatos desarrollo de requerimientos mejorado
PPT
Principales escritores
PPTX
Confecciones
PDF
Plantilla gestion de riesgo4
PDF
Experiment Search
PPTX
Hello, my name is
DOCX
prueba slide
PPTX
Jci toyp 2013 til lokalpresidenter (1)
PPTX
2.18. Recomendaciones para la rotura del tow
PPT
Belarus. Packaging
Alexandra tobar v_cambio climatico en San Andres Islas
Reflective essay
Curriculum vitae rise
Proceso herrajes
El inaceptable costo de los malos jefes
Mantenimiento preventivo 2
Presentacion Del Caso
Principio 90 10-__stephen_covey
Formatos desarrollo de requerimientos mejorado
Principales escritores
Confecciones
Plantilla gestion de riesgo4
Experiment Search
Hello, my name is
prueba slide
Jci toyp 2013 til lokalpresidenter (1)
2.18. Recomendaciones para la rotura del tow
Belarus. Packaging
Ad

Similar to Vb net xp_02 (20)

PPS
02 gui 02
DOCX
The visual studio start page is shown in the figure below
PPS
Vb.net session 10
PPTX
LECTURE 12 WINDOWS FORMS PART 2.pptx
PPT
PDF
PDF
Notes windows form controls gui applications
PPTX
Spf chapter 03 WinForm
PDF
PPTX
hjksjdhksjhcksjhckjhskdjhcskjhckjdppt.pptx
PPTX
Visual basic
PPSX
PDF
Interactive material
PDF
Visual Basic IDE Intro.pdf
PPT
Session 1. Bai 1 ve winform
DOCX
Visual C# 2010
PDF
ASP.Net training in Chennai, Tambaram
PDF
ASP.Net Training Institute in Chennai, Tambaram
PDF
Ch02 bronson
PDF
Visual Basic 2008 In 24 Hrs
02 gui 02
The visual studio start page is shown in the figure below
Vb.net session 10
LECTURE 12 WINDOWS FORMS PART 2.pptx
Notes windows form controls gui applications
Spf chapter 03 WinForm
hjksjdhksjhcksjhckjhskdjhcskjhckjdppt.pptx
Visual basic
Interactive material
Visual Basic IDE Intro.pdf
Session 1. Bai 1 ve winform
Visual C# 2010
ASP.Net training in Chennai, Tambaram
ASP.Net Training Institute in Chennai, Tambaram
Ch02 bronson
Visual Basic 2008 In 24 Hrs

More from Niit Care (20)

PPS
Ajs 1 b
PPS
Ajs 4 b
PPS
Ajs 4 a
PPS
Ajs 4 c
PPS
Ajs 3 b
PPS
Ajs 3 a
PPS
Ajs 3 c
PPS
Ajs 2 b
PPS
Ajs 2 a
PPS
Ajs 2 c
PPS
Ajs 1 a
PPS
Ajs 1 c
PPS
Dacj 4 2-c
PPS
Dacj 4 2-b
PPS
Dacj 4 2-a
PPS
Dacj 4 1-c
PPS
Dacj 4 1-b
PPS
Dacj 4 1-a
PPS
Dacj 1-2 b
PPS
Dacj 1-3 c
Ajs 1 b
Ajs 4 b
Ajs 4 a
Ajs 4 c
Ajs 3 b
Ajs 3 a
Ajs 3 c
Ajs 2 b
Ajs 2 a
Ajs 2 c
Ajs 1 a
Ajs 1 c
Dacj 4 2-c
Dacj 4 2-b
Dacj 4 2-a
Dacj 4 1-c
Dacj 4 1-b
Dacj 4 1-a
Dacj 1-2 b
Dacj 1-3 c

Recently uploaded (20)

PPTX
Big Data Technologies - Introduction.pptx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
cuic standard and advanced reporting.pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
Spectroscopy.pptx food analysis technology
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Machine learning based COVID-19 study performance prediction
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPT
Teaching material agriculture food technology
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Empathic Computing: Creating Shared Understanding
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
Big Data Technologies - Introduction.pptx
“AI and Expert System Decision Support & Business Intelligence Systems”
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
cuic standard and advanced reporting.pdf
Per capita expenditure prediction using model stacking based on satellite ima...
Spectroscopy.pptx food analysis technology
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Machine learning based COVID-19 study performance prediction
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Unlocking AI with Model Context Protocol (MCP)
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Diabetes mellitus diagnosis method based random forest with bat algorithm
Teaching material agriculture food technology
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Empathic Computing: Creating Shared Understanding
Dropbox Q2 2025 Financial Results & Investor Presentation

Vb net xp_02

  • 1. Creating Windows Forms Objectives In this lesson, you will learn to: Identify the features of Windows Forms Identify various language features required to work with Windows Forms Identify various Windows Forms controls Create Windows Forms ©NIIT Creating Windows Forms/Lesson 2/Slide 1 of 30
  • 2. Creating Windows Forms Understanding the User Interface A user interface is the means by which a user interacts with an application. A well-designed user interface is an effective means of making an application user-friendly. Types of User Interfaces Character user interface (CUI) Graphical user interface (GUI) ©NIIT Creating Windows Forms/Lesson 2/Slide 2 of 30
  • 3. Creating Windows Forms Windows Form Is a representation of any window displayed in an application. Is used to accept input from a user and display information. ©NIIT Creating Windows Forms/Lesson 2/Slide 3 of 30
  • 4. Creating Windows Forms Windows Forms (Contd.) Windows Form properties: Are used to determine the appearance of a Windows Form at run time. Some commonly used properties are: ®Name ®BackColor ®BackgroundImage ®Font ®Size ®StartPosition ®Text ®WindowState ©NIIT Creating Windows Forms/Lesson 2/Slide 4 of 30
  • 5. Creating Windows Forms Windows Forms (Contd.) Windows Forms events: Click Closed Deactivate Load MouseMove MouseDown MouseUp ©NIIT Creating Windows Forms/Lesson 2/Slide 5 of 30
  • 6. Creating Windows Forms Windows Forms (Contd.) Windows Forms methods: Show() Activate() Close() SetDesktopLocation() ©NIIT Creating Windows Forms/Lesson 2/Slide 6 of 30
  • 7. Creating Windows Forms Visual Basic.NET Language Features Data types: Byte Short Integer Long Single Double Decimal Boolean ©NIIT Creating Windows Forms/Lesson 2/Slide 7 of 30
  • 8. Creating Windows Forms Visual Basic.NET Language Features (Contd.) Data types: (Contd.) Char String Date Object ©NIIT Creating Windows Forms/Lesson 2/Slide 8 of 30
  • 9. Creating Windows Forms Visual Basic .NET Language Features (Contd.) Variables Allow you to store data. Have a data type and a name. Can be declared by using the Dim statement. Arrays Are collections of values of the same data type. Contain elements that can be accessed using a single name and an index number representing the position of the element within the array. ©NIIT Creating Windows Forms/Lesson 2/Slide 9 of 30
  • 10. Creating Windows Forms Visual Basic .NET Language Features (Contd.) Are declared using the following syntax: Dim arrayname(Number-of-elements) as datatype Can be resized using the Redim statement. Operators Are used to process the data entered by a user. Can be categorized as follows: ®Arithmetic operators such as +, -, *, /, , and Mod ®Comparison operators such as =, , , =, =, and ®Logical operators such as And, Or, Not, and Xor ®Concatenation operators such as and + ©NIIT Creating Windows Forms/Lesson 2/Slide 10 of 30
  • 11. Creating Windows Forms Visual Basic .NET Language Features (Contd.) Control flow constructs Decision structures ®If-then-else ®Select case Loop structures ®While-End while ®Do-Loop ®For-Next Nested control statements ©NIIT Creating Windows Forms/Lesson 2/Slide 11 of 30
  • 12. Creating Windows Forms Just a Minute… 1. Write a loop structure to display all odd numbers between 1 and 100. 2. Write the construct to check whether the character stored in the variable X is a vowel and display an appropriate message. ©NIIT Creating Windows Forms/Lesson 2/Slide 12 of 30
  • 13. Creating Windows Forms Problem Statement 2.D.1 For the Call Center application, a startup screen needs to be provided to accept the user name and password. The application should allow the user to enter the user name and password for a maximum of three times. If in all of the three attempts, a wrong user name and password is entered, the application should display an error and close. ©NIIT Creating Windows Forms/Lesson 2/Slide 13 of 30
  • 14. Creating Windows Forms Task List Identify the variables required to store the values in the application. Identify the controls to be used for accepting input from the user. Identify the mechanism to validate the user input. Create a Windows Form. Add controls to the Windows Form. Write the code to validate the user input. Execute the application. ©NIIT Creating Windows Forms/Lesson 2/Slide 14 of 30
  • 15. Creating Windows Forms Task 1: Identify the variables required to store the values in the application. Result: The variables required for accepting the login details from a user are: Counter Login Name Password ©NIIT Creating Windows Forms/Lesson 2/Slide 15 of 30
  • 16. Creating Windows Forms Task 2: Identify the controls to be used for accepting input from the user. Visual Basic .NET provides a number of controls that can be added to a form: TextBox ®Is used to display text to a user or accept input from a user. ®Has the following properties: ® Text ® Multiline ® Passwordchar ©NIIT Creating Windows Forms/Lesson 2/Slide 16 of 30
  • 17. Creating Windows Forms Task 2: Identify the controls to be used for accepting input from the user. (Contd.) Label ®Is used to provide information or description of another control on the Windows Form. ®Has the following properties: ® Text ® AutoSize ©NIIT Creating Windows Forms/Lesson 2/Slide 17 of 30
  • 18. Creating Windows Forms Task 2: Identify the controls to be used for accepting input from the user. (Contd.) LinkLabel ®Is used to display the text as a link. ®Has the following properties: ® LinkColor ® ActiveLinkColor ® DisabledLinkColor ® LinkVisited ©NIIT Creating Windows Forms/Lesson 2/Slide 18 of 30
  • 19. Creating Windows Forms Task 2: Identify the controls to be used for accepting input from the user. (Contd.) ListBox ®Is used to display a list of items to a user. ®Can be populated by using the Add() method of the Items collection. ®Has the following properties: ® SelectionMode ® Sorted ® SelectedIndex ® SelectedItem ©NIIT Creating Windows Forms/Lesson 2/Slide 19 of 30
  • 20. Creating Windows Forms Task 2: Identify the controls to be used for accepting input from the user. (Contd.) ComboBox ®Is used to display a drop-down list of items. ®Can be populated by using the Add() method of the Items collection. ®Has the following properties: ® Text ® Sorted ® SelectedIndex ® SelectedItem ©NIIT Creating Windows Forms/Lesson 2/Slide 20 of 30
  • 21. Creating Windows Forms Task 2: Identify the controls to be used for accepting input from the user. (Contd.) CheckBox ®Is used to set Yes/No or True/false options. ®Has the following properties: ® Text ® Checked ©NIIT Creating Windows Forms/Lesson 2/Slide 21 of 30
  • 22. Creating Windows Forms Task 2: Identify the controls to be used for accepting input from the user. (Contd.) RadioButton ®Is used to provide a set of mutually exclusive options to the user. ®Has the following properties: ® Text ® Checked ©NIIT Creating Windows Forms/Lesson 2/Slide 22 of 30
  • 23. Creating Windows Forms Task 2: Identify the controls to be used for accepting input from the user. (Contd.) GroupBox ®Is used to group related controls. Button ®Is used to perform an action when a user clicks it. ®Has the Text property, which is used to set the text displayed on the button. StatusBar ®Is used to display the status information. ®Has the following properties: ® ShowPanels ® Text ©NIIT Creating Windows Forms/Lesson 2/Slide 23 of 30
  • 24. Creating Windows Forms Task 2: Identify the controls to be used for accepting input from the user. (Contd.) Some common properties found in most of the controls are: Name Visible Location Enabled ©NIIT Creating Windows Forms/Lesson 2/Slide 24 of 30
  • 25. Creating Windows Forms Task 2: Identify the controls to be used for accepting input from the user. (Contd.) Some common events found in most of the controls are: KeyDown KeyUp KeyPress MouseDown MouseUp MouseMove ReSize VisibleChanged ©NIIT Creating Windows Forms/Lesson 2/Slide 25 of 30
  • 26. Creating Windows Forms Task 2: Identify the controls to be used for accepting input from the user. (Contd.) Result: You will use the following controls for the given problem statement: Label TextBox Button ©NIIT Creating Windows Forms/Lesson 2/Slide 26 of 30
  • 27. Creating Windows Forms Task 3: Identify the mechanism to validate the user input. Result: The program should use the If-Then construct to validate the user name and the password. The If‑Then construct can also be used to ensure that value of the counter is not greater than 3. ©NIIT Creating Windows Forms/Lesson 2/Slide 27 of 30
  • 28. Creating Windows Forms Task 4: Create a Windows Form. Task 5: Add controls to the Windows Form. Task 6: Write the code to validate the user input. Task 7: Execute the application. ©NIIT Creating Windows Forms/Lesson 2/Slide 28 of 30
  • 29. Creating Windows Forms Just a Minute… You have created two forms named Form1 and Form2. Write the code so that when a user clicks the OK button in Form1, Form2 should be displayed. ©NIIT Creating Windows Forms/Lesson 2/Slide 29 of 30
  • 30. Creating Windows Forms Problem Statement 2.P.1 Diaz Telecommunications needs an application to accept order details. The details to be accepted include order number, date, customer ID, product ID, cost, and advance. The product IDs should be displayed in a combo box. When a user clicks the Save button after entering order details, the application should verify that none of the fields is left blank and display an appropriate message. ©NIIT Creating Windows Forms/Lesson 2/Slide 30 of 30
  • 31. Creating Windows Forms Summary In this lesson, you learned that: A form is used to accept input from the user and present information to the user. An event gets generated on performing an action such as clicking the mouse or pressing a key from the keyboard. When an event is raised, the code within the event handler is executed. Variables are used to store data at run time. You can declare a variable by using the Dim statement. The decision structures supported by Visual Basic .NET include:  If-Then-Else Select-Case ©NIIT Creating Windows Forms/Lesson 2/Slide 31 of 30
  • 32. Creating Windows Forms Summary (Contd.) The loop structures supported by Visual Basic .NET are: While-End While Do-Loop For-Next Controls can be added to a form to accept input from the user or display some information on the form. Some commonly used controls are TextBox, Label, CheckBox, RadioButton, and Button. ©NIIT Creating Windows Forms/Lesson 2/Slide 32 of 30