SlideShare a Scribd company logo
Creating Components
Objectives
In this lesson, you will learn to:
Create components for Windows Forms
Use COM components in Visual Basic .NET
Implement an Interface in Visual Basic .NET




    ©NIIT                        Creating Components/Lesson 13/Slide 1 of 19
Creating Components
Component
Is a reusable piece of code in a binary form that can be
plugged into components from other vendors, with relatively
  little effort.
Helps in reducing the development time.
Helps in reducing errors because you reuse a code that is
 already tested.




   ©NIIT                      Creating Components/Lesson 13/Slide 2 of 19
Creating Components
Just a Minute…
You need to write a program to validate user logins. This
program will be used across applications. What will you
develop the program as and why?




   ©NIIT                      Creating Components/Lesson 13/Slide 3 of 19
Creating Components
Component Architecture in .NET
Assembly
    Contains information about the files on which the
     component depends and the location of these files.
    Consists of a manifest and the portable executables
     (PE).
Global Assembly Cache
    Is a repository of assemblies.
    Must have a unique identification to resolve name
     conflicts. To avoid this conflict you can also give a
     shared name to an assembly.


   ©NIIT                      Creating Components/Lesson 13/Slide 4 of 19
Creating Components
Just a Minute…
Why does an assembly need a shared name?




   ©NIIT                  Creating Components/Lesson 13/Slide 5 of 19
Creating Components
Component Classes
Get created when they follow defined standards of
interaction provided by the IComponent interface.
Can be created by using the .NET Class Library project
template.
Can be used in another project by adding a reference to the
     components.




   ©NIIT                     Creating Components/Lesson 13/Slide 6 of 19
Creating Components
Just a Minute…
How will you use a component?




   ©NIIT                   Creating Components/Lesson 13/Slide 7 of 19
Creating Components
Life Cycle of a Component
Initialization phase
    Can be of two types:
           ®Type initialization
           ®Instance initialization
Cleanup phase
    Is implemented by using the Dispose() method.
Destroy phase
    Gets invoked when the garbage collector finds that
     there are no references to the component and therefore
     it calls the Finalize() method of the component.
   ©NIIT                          Creating Components/Lesson 13/Slide 8 of 19
Creating Components
Polymorphism
Is the ability of a class to implement functions with the same
 name to perform different actions depending on how they
 are called.
Is a feature supported by all object-oriented languages.
Can be implemented in three ways:
     By implementing an interface
     By using inheritance
     By using abstract classes




   ©NIIT                      Creating Components/Lesson 13/Slide 9 of 19
Creating Components
COM in .NET
.NET supports COM and ActiveX objects for backward
compatibility.
Interaction between COM and .NET is provided through a
 wrapper called Runtime‑Callable Wrapper (RCW).
A COM component can be called from .NET in the following
 ways:
    By converting the COM type library to a .NET assembly
     by using the tlbimp tool
    Using COM components directly by adding a reference




   ©NIIT                   Creating Components/Lesson 13/Slide 10 of 19
Creating Components
Problem Statement 13.D.1
Customers of Diaz Telecommunications who place their
orders online must submit their credit card number, name, and
the expiry date of the credit card. The credit card number
submitted has to be validated.




   ©NIIT                     Creating Components/Lesson 13/Slide 11 of 19
Creating Components
Task List
Identify the most suitable type of component.
Identify the properties and methods for the component.
Create a project of the appropriate type.
Add properties and functions to the component.
Build the component.
Create a user interface to display the result.
Verify the execution.




   ©NIIT                      Creating Components/Lesson 13/Slide 12 of 19
Creating Components
Task 1: Identify the most suitable type of component.
Result:
A customized component has to be created to verify the
credit card numbers supplied by the customers.




   ©NIIT                    Creating Components/Lesson 13/Slide 13 of 19
Creating Components
Task 2: Identify the properties and methods for the
component.
You can have the following types of constructors in your
component:
    Public Constructors — To enable developers to create
     instances of your component.
    Friend Constructors — To enable the usage of a
     component inside an assembly but not outside it.
    Private Constructors — To enable the usage only inside
     the component class.




   ©NIIT                     Creating Components/Lesson 13/Slide 14 of 19
Creating Components
Task 2: Identify the properties and methods for the
component. (Contd.)
Result:
The two properties required for the components are:
    CustomerName: A property for the name of the
     customer of type string.
    CardNumber: A property for the card number of type
     string.
The following methods are required:
    The default public constructor can be used for this
     component.
    LeftChar(): A method to return the leftmost character
     from a string.

   ©NIIT                     Creating Components/Lesson 13/Slide 15 of 19
Creating Components
Task 2: Identify the properties and methods for the
component. (Contd.)
Result:
RightChar(): A method to return the rightmost character
     from a string.
CharaceterToInt(): A method to return the numerical
     equivalent of a character.
Validate(): A method to validate the card number.




   ©NIIT                   Creating Components/Lesson 13/Slide 16 of 19
Creating Components
Task 3: Create a project of the appropriate type.
Task 4: Add properties and functions to the
component.
Task 5: Build the component.
Task 6: Create a user interface to display the result.
Task 7: Verify the execution.




   ©NIIT                  Creating Components/Lesson 13/Slide 17 of 19
Creating Components
Problem Statement 13.P.1
The Employee data in the call centers at Diaz
Telecommunications requires check for valid employee id,
age, and salary entries. The employee id should start with the
letter ‘E’ followed by three digits. The age should be from 21
years to 60 years. In addition, the salary should be in the
range of $3000 to $35000. Create a component that will check
the validity of employee id, age, and salary.




   ©NIIT                     Creating Components/Lesson 13/Slide 18 of 19
Creating Components
Summary
In this lesson, you learned that:
A component is a reusable piece of code in a binary form
      that can be plugged into components from other
vendors,     with relatively little effort.
An assembly contains information about the files on which
      the component depends and the location of these files.
An interface can be implemented in a class to implement
      polymorphism.
Component Object Module (COM) is a
language‑independent software architecture that defines a set
of standards for component interoperability.
COM components can be used in .NET by using the tlbimp
    tool or by adding a reference.
    ©NIIT                      Creating Components/Lesson 13/Slide 19 of 19

More Related Content

PPS
Vb net xp_15
PPS
Vb net xp_01
PPS
Vb net xp_12
PPS
Vb net xp_14
PPS
Vb net xp_16
PPS
Vb net xp_08
PPS
Aae oop xp_02
PPS
Vb.net session 09
Vb net xp_15
Vb net xp_01
Vb net xp_12
Vb net xp_14
Vb net xp_16
Vb net xp_08
Aae oop xp_02
Vb.net session 09

Similar to Vb net xp_13 (20)

PPT
VB.Net GUI Unit_01
PDF
Component Object Model (COM, DCOM, COM+)
PPS
Vb net xp_03
PDF
Oopp Lab Work
PPTX
Vb6.0 intro
PDF
C# 12 Pocket Reference: Instant Help for C# 12 Programmers Joseph Albahari
PDF
Creating simple component
PPTX
Pa 10 n1 louis decroo jr.
PPTX
Composite design pattern
PPT
Angular 8
DOCX
IT 200 Network DiagramBelow is the wired network configurat.docx
DOCX
Student Lab Activity A. Lab # CIS CIS170A-A1B. Lab 6.docx
PPT
Visual basic
PPT
Chapter2.ppt
PPTX
Web-Dev Portfolio
PPTX
Component interface
DOCX
PT1420 Repetition Structures in Visual Basic .docx
PPT
vb-1605181cbddfbfbdfbfdbdfbfdbdfbfdbfdb51614.ppt
PPT
Visual basic
DOCX
POS 408 Education Specialist / snaptutorial.com
VB.Net GUI Unit_01
Component Object Model (COM, DCOM, COM+)
Vb net xp_03
Oopp Lab Work
Vb6.0 intro
C# 12 Pocket Reference: Instant Help for C# 12 Programmers Joseph Albahari
Creating simple component
Pa 10 n1 louis decroo jr.
Composite design pattern
Angular 8
IT 200 Network DiagramBelow is the wired network configurat.docx
Student Lab Activity A. Lab # CIS CIS170A-A1B. Lab 6.docx
Visual basic
Chapter2.ppt
Web-Dev Portfolio
Component interface
PT1420 Repetition Structures in Visual Basic .docx
vb-1605181cbddfbfbdfbfdbdfbfdbdfbfdbfdb51614.ppt
Visual basic
POS 408 Education Specialist / snaptutorial.com
Ad

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
Ad

Recently uploaded (20)

PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
Machine Learning_overview_presentation.pptx
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Spectroscopy.pptx food analysis technology
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
Electronic commerce courselecture one. Pdf
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Empathic Computing: Creating Shared Understanding
PDF
Network Security Unit 5.pdf for BCA BBA.
The Rise and Fall of 3GPP – Time for a Sabbatical?
Machine Learning_overview_presentation.pptx
Review of recent advances in non-invasive hemoglobin estimation
Assigned Numbers - 2025 - Bluetooth® Document
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Spectroscopy.pptx food analysis technology
Programs and apps: productivity, graphics, security and other tools
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
20250228 LYD VKU AI Blended-Learning.pptx
“AI and Expert System Decision Support & Business Intelligence Systems”
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Electronic commerce courselecture one. Pdf
Encapsulation_ Review paper, used for researhc scholars
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Empathic Computing: Creating Shared Understanding
Network Security Unit 5.pdf for BCA BBA.

Vb net xp_13

  • 1. Creating Components Objectives In this lesson, you will learn to: Create components for Windows Forms Use COM components in Visual Basic .NET Implement an Interface in Visual Basic .NET ©NIIT Creating Components/Lesson 13/Slide 1 of 19
  • 2. Creating Components Component Is a reusable piece of code in a binary form that can be plugged into components from other vendors, with relatively little effort. Helps in reducing the development time. Helps in reducing errors because you reuse a code that is already tested. ©NIIT Creating Components/Lesson 13/Slide 2 of 19
  • 3. Creating Components Just a Minute… You need to write a program to validate user logins. This program will be used across applications. What will you develop the program as and why? ©NIIT Creating Components/Lesson 13/Slide 3 of 19
  • 4. Creating Components Component Architecture in .NET Assembly Contains information about the files on which the component depends and the location of these files. Consists of a manifest and the portable executables (PE). Global Assembly Cache Is a repository of assemblies. Must have a unique identification to resolve name conflicts. To avoid this conflict you can also give a shared name to an assembly. ©NIIT Creating Components/Lesson 13/Slide 4 of 19
  • 5. Creating Components Just a Minute… Why does an assembly need a shared name? ©NIIT Creating Components/Lesson 13/Slide 5 of 19
  • 6. Creating Components Component Classes Get created when they follow defined standards of interaction provided by the IComponent interface. Can be created by using the .NET Class Library project template. Can be used in another project by adding a reference to the components. ©NIIT Creating Components/Lesson 13/Slide 6 of 19
  • 7. Creating Components Just a Minute… How will you use a component? ©NIIT Creating Components/Lesson 13/Slide 7 of 19
  • 8. Creating Components Life Cycle of a Component Initialization phase Can be of two types: ®Type initialization ®Instance initialization Cleanup phase Is implemented by using the Dispose() method. Destroy phase Gets invoked when the garbage collector finds that there are no references to the component and therefore it calls the Finalize() method of the component. ©NIIT Creating Components/Lesson 13/Slide 8 of 19
  • 9. Creating Components Polymorphism Is the ability of a class to implement functions with the same name to perform different actions depending on how they are called. Is a feature supported by all object-oriented languages. Can be implemented in three ways: By implementing an interface By using inheritance By using abstract classes ©NIIT Creating Components/Lesson 13/Slide 9 of 19
  • 10. Creating Components COM in .NET .NET supports COM and ActiveX objects for backward compatibility. Interaction between COM and .NET is provided through a wrapper called Runtime‑Callable Wrapper (RCW). A COM component can be called from .NET in the following ways: By converting the COM type library to a .NET assembly by using the tlbimp tool Using COM components directly by adding a reference ©NIIT Creating Components/Lesson 13/Slide 10 of 19
  • 11. Creating Components Problem Statement 13.D.1 Customers of Diaz Telecommunications who place their orders online must submit their credit card number, name, and the expiry date of the credit card. The credit card number submitted has to be validated. ©NIIT Creating Components/Lesson 13/Slide 11 of 19
  • 12. Creating Components Task List Identify the most suitable type of component. Identify the properties and methods for the component. Create a project of the appropriate type. Add properties and functions to the component. Build the component. Create a user interface to display the result. Verify the execution. ©NIIT Creating Components/Lesson 13/Slide 12 of 19
  • 13. Creating Components Task 1: Identify the most suitable type of component. Result: A customized component has to be created to verify the credit card numbers supplied by the customers. ©NIIT Creating Components/Lesson 13/Slide 13 of 19
  • 14. Creating Components Task 2: Identify the properties and methods for the component. You can have the following types of constructors in your component: Public Constructors — To enable developers to create instances of your component. Friend Constructors — To enable the usage of a component inside an assembly but not outside it. Private Constructors — To enable the usage only inside the component class. ©NIIT Creating Components/Lesson 13/Slide 14 of 19
  • 15. Creating Components Task 2: Identify the properties and methods for the component. (Contd.) Result: The two properties required for the components are:  CustomerName: A property for the name of the customer of type string.  CardNumber: A property for the card number of type string. The following methods are required:  The default public constructor can be used for this component.  LeftChar(): A method to return the leftmost character from a string. ©NIIT Creating Components/Lesson 13/Slide 15 of 19
  • 16. Creating Components Task 2: Identify the properties and methods for the component. (Contd.) Result: RightChar(): A method to return the rightmost character from a string. CharaceterToInt(): A method to return the numerical equivalent of a character. Validate(): A method to validate the card number. ©NIIT Creating Components/Lesson 13/Slide 16 of 19
  • 17. Creating Components Task 3: Create a project of the appropriate type. Task 4: Add properties and functions to the component. Task 5: Build the component. Task 6: Create a user interface to display the result. Task 7: Verify the execution. ©NIIT Creating Components/Lesson 13/Slide 17 of 19
  • 18. Creating Components Problem Statement 13.P.1 The Employee data in the call centers at Diaz Telecommunications requires check for valid employee id, age, and salary entries. The employee id should start with the letter ‘E’ followed by three digits. The age should be from 21 years to 60 years. In addition, the salary should be in the range of $3000 to $35000. Create a component that will check the validity of employee id, age, and salary. ©NIIT Creating Components/Lesson 13/Slide 18 of 19
  • 19. Creating Components Summary In this lesson, you learned that: A component is a reusable piece of code in a binary form that can be plugged into components from other vendors, with relatively little effort. An assembly contains information about the files on which the component depends and the location of these files. An interface can be implemented in a class to implement polymorphism. Component Object Module (COM) is a language‑independent software architecture that defines a set of standards for component interoperability. COM components can be used in .NET by using the tlbimp tool or by adding a reference. ©NIIT Creating Components/Lesson 13/Slide 19 of 19