SlideShare a Scribd company logo
1 of 99
Download to read offline
FEDT VB.NET
F R O N T E N D D E S I G N T O O L
U S I N G
V B . N E T
P R E S E N T A T I O N B Y :
A N K I T V E R M A
( I T D E P A R T M E N T )
A N K I T V E R M A A S S T . P R O F E S S O R
U N I T - 4
28-11-2014 ANKIT VERMA 2
DATABASE
CONNECTIVITY
USING ADO .NET
Evolution Of ADO .NET
 Database is required by organization to retrieve,
manipulate and update huge amount of data.
 Data Access Model (DAO)
 First model used for connectivity.
 This model followed by VB and mainly by Jet Engine Database.
 Problem:
 Performance not so good.
 Remote Data Object (RDO)
 Introduced for remote database like Oracle and SQL Server.
28-11-2014 ANKIT VERMA 3
Evolution Of ADO .NET
 ActiveX Data Object (ADO)
 Specially designed for Client-Server architecture.
 Good for Relational and Non-Relational databases.
 Problem:
 Connected Data Access, which leads to Security, Performance issue
and Network Traffic.
 ADO .NET
 Eliminated problems found with earlier models.
 Widely used access technology for connectivity.
 Fulfil needs of developer and built upon .NET framework.
 Used by application to communicate with database for all
database operations.
28-11-2014 ANKIT VERMA 4
Evolution Of ADO .NET
 Main Features:
 Disconnected architecture.
 Integration with XML.
 Data from multiple data stores.
 Optimized performance for connecting with database.
 Uniform database access technology
 Common type system
 Design pattern
 Exception handling
28-11-2014 ANKIT VERMA 5
ADO .NET Description
 Data access component for .NET Framework.
 Enable communication with Database as well as other
Structures like Array, Collection etc.
 Supports data centric application development and use
disconnected architecture for accessing data.
 Support all types of databases for retrieving, accessing and
updating data.
 ADO.NET establish connection with data source, send
query, update statement of data source and return result.
 Results either processed directly or stored in data set
object.
28-11-2014 ANKIT VERMA 6
Features of ADO .NET
 Disconnected data architecture
 Connection established only when required.
 Avoid wastage of Resource & improve performance.
 Scalability
 Work with dataset without connecting with database.
 Can meet increasing demands of database users more efficiently.
 Interoperability
 Data transfer is achieved by using XML format.
 XML is standard format for exchanging data in different application.
 Increase safety of code and reduce compilation errors.
 Separation of data logic and interface.
 Enables integration of data from multiple heterogeneous data sources.
 Uses COM+ based connection pooling.
28-11-2014 ANKIT VERMA 7
ADO .NET Object Model
28-11-2014 ANKIT VERMA 8
DATA SET NET DATA PROVIDER
SERVER
Data Table
Database
Data Adapter
Command
Connection
Data Provider
 SQL Server Data Provider
 Connect with Microsoft SQL Server.
 System.Data.SQLClient namespace is used.
 OLEDB Data Provider
 Connect with OLEDB data source like Oracle, Jet and SQL.
 System.Data.OLEDB namespace is used.
 ODBC Data Provider
 Connect with ODBC data sources.
 System.Data.ODBC namespace is used.
 Oracle Data Provider
 Connect with Oracle data sources.
 System.Data.OracleClient namespace is used.
28-11-2014 ANKIT VERMA 9
Dataset Object Model
28-11-2014 ANKIT VERMA 10
DATASET
Tables
Collection
Data Table
Relation
Collection
Data
Relation
Columns
Collection
Rows
Collection
Constraints
Collection
Data
Columns
Data Row Constraint
Namespaces In ADO .NET
 System.Data
 System.Data.OLEDB
 System.Data.Common
 System.Data.SQLClient
 System.Data.SQlTypes
28-11-2014 ANKIT VERMA 11
28-11-2014 ANKIT VERMA 12
ACCESS
CONNECTIVITY WITH
DATAGRIDVIEW
28-11-2014 ANKIT VERMA 13
Step 1:
Create Access Database
Access Connectivity With DataGridView
 Start Access:
28-11-2014 ANKIT VERMA 14
Access Connectivity With DataGridView
Create Blank Desktop Database:
28-11-2014 ANKIT VERMA 15
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 16
 Create Database In Access:
Access Connectivity With DataGridView
Design Table View:
28-11-2014 ANKIT VERMA 17
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 18
 Provide Table Name:
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 19
 Design Table View:
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 20
 Add Records To Table:
28-11-2014 ANKIT VERMA 21
Step 2:
Create Data Connection
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 22
 Windows Application  Server Explorer Data
Connection:
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 23
 Select Data Source:
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 24
 Select Database File Name:
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 25
 Test Connection:
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 26
 Database Connected:
28-11-2014 ANKIT VERMA 27
Step 3:
Connect With DataGridView
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 28
 Drag And Drop DataGridView:
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 29
 Add Data Source:
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 30
 Follow Steps:
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 31
 Follow Steps:
Access Connectivity With DataGridView
28-11-2014 ANKIT VERMA 32
 Follow Steps:
28-11-2014 ANKIT VERMA 33
ACCESS
CONNECTIVITY WITH
TEXTBOX
28-11-2014 ANKIT VERMA 34
Step 1:
Create Access Database
28-11-2014 ANKIT VERMA 35
Step 2:
Create Data Connection
28-11-2014 ANKIT VERMA 36
Step 3:
Connect With TextBox
Access Connectivity With TextBox
28-11-2014 ANKIT VERMA 37
Access Connectivity With TextBox
28-11-2014 ANKIT VERMA 38
Access Connectivity With TextBox
28-11-2014 ANKIT VERMA 39
28-11-2014 ANKIT VERMA 40
ACCESS
CONNECTIVITY
INSERT, DELETE &
MODIFY RECORD
28-11-2014 ANKIT VERMA 41
Step 1:
Create Access Database
28-11-2014 ANKIT VERMA 42
Step 2:
Create Data Connection
28-11-2014 ANKIT VERMA 43
Step 3:
Connect With TextBox For
Insert Delete Modify Record
Insert Delete Modify Records
28-11-2014 ANKIT VERMA 44
Insert Delete Modify Records
28-11-2014 ANKIT VERMA 45
Insert Delete Modify Records
28-11-2014 ANKIT VERMA 46
Insert Delete Modify Records
28-11-2014 ANKIT VERMA 47
Insert Delete Modify Records
Access Database – Student Table:
28-11-2014 ANKIT VERMA 48
Insert Delete Modify Records
28-11-2014 ANKIT VERMA 49
Insert Delete Modify Records
28-11-2014 ANKIT VERMA 50
Insert Delete Modify Records
28-11-2014 ANKIT VERMA 51
Insert Delete Modify Records
28-11-2014 ANKIT VERMA 52
28-11-2014 ANKIT VERMA 53
SQL SERVER
CONNECTIVITY
28-11-2014 ANKIT VERMA 54
Step 1:
Create SQL Server Database
SQL Connectivity
28-11-2014 ANKIT VERMA 55
 Start SQL Server:
SQL Connectivity
28-11-2014 ANKIT VERMA 56
 Enter Server Name:
SQL Connectivity
28-11-2014 ANKIT VERMA 57
 Enter Server Name:
SQL Connectivity
28-11-2014 ANKIT VERMA 58
 Create Database:
SQL Connectivity
28-11-2014 ANKIT VERMA 59
 Enter Database Name:
SQL Connectivity
28-11-2014 ANKIT VERMA 60
 Select Database:
SQL Connectivity
28-11-2014 ANKIT VERMA 61
 Create Table:
SQL Connectivity
28-11-2014 ANKIT VERMA 62
 Design Table View:
SQL Connectivity
28-11-2014 ANKIT VERMA 63
 Set Primary Key (If Needed):
SQL Connectivity
28-11-2014 ANKIT VERMA 64
 Save Table Name:
SQL Connectivity
28-11-2014 ANKIT VERMA 65
 Open Table For Entries:
SQL Connectivity
28-11-2014 ANKIT VERMA 66
 Enter Records In Table & Save:
28-11-2014 ANKIT VERMA 67
Step 2:
Create Data Connection
SQL Connectivity
28-11-2014 ANKIT VERMA 68
 Windows Form  Server Explored  Add Connection:
SQL Connectivity
28-11-2014 ANKIT VERMA 69
 Follow Steps:
SQL Connectivity
28-11-2014 ANKIT VERMA 70
 Follow Steps:
SQL Connectivity
28-11-2014 ANKIT VERMA 71
 Enter Server Name & Select Database:
SQL Connectivity
28-11-2014 ANKIT VERMA 72
 Test Connection:
28-11-2014 ANKIT VERMA 73
Step 3:
Connect With DataGridView
SQL Connectivity
28-11-2014 ANKIT VERMA 74
 Toolbox  DataGridView:
SQL Connectivity
28-11-2014 ANKIT VERMA 75
 Select Database Path:
SQL Connectivity
28-11-2014 ANKIT VERMA 76
 Follow Steps As Access Database Connectivity:
SQL Connectivity
28-11-2014 ANKIT VERMA 77
 Run Program:
28-11-2014 ANKIT VERMA 78
CRYSTAL REPORT
Crystal Report
 Best way to represent data in concise manner.
 Provide way to organize, categorize & summarize data.
 Report format the data according to user requirement.
 Display data in attractive manner.
 User can view report and take printout.
 Report can be mailed very easily to any department.
 Grouping and sorting can be performed on report.
 Crystal report can generate report from various format
sources like database, excel, XLM etc.
 Crystal report can be downloaded from Internet for Visual
Studio 2010, as it is compatible with .NET
28-11-2014 ANKIT VERMA 79
Crystal Report : 5 Parts
 Report Header:
 Content placed in this section print once, at beginning of report.
 Section contains Report Title, other information etc. that we want to
display at beginning of report.
 Report Footer:
 Content placed in this section print once, at the end of report.
 Section used to contain information such as grand total, summary etc.
 Page Header:
 Content placed in this section print at beginning of each new page.
 Section contains information that you want to display on each page
like Chapter Name, Document Name, Field Title etc.
28-11-2014 ANKIT VERMA 80
Crystal Report : 5 Parts
 Page Footer:
 The contents placed in this section print at the bottom of each page.
 It contains Page Number, Report Date, Author Name etc.
 Details:
 The content placed in this section print with each record of database.
 It contains the entire data for the body of report.
 When we run the report, this section is reprinted for each record.
28-11-2014 ANKIT VERMA 81
28-11-2014 ANKIT VERMA 82
Building Crystal Report
28-11-2014 ANKIT VERMA 83
Step 1:
Create Access Database
28-11-2014 ANKIT VERMA 84
Step 2:
Create Crystal Report
Crystal Report
28-11-2014 ANKIT VERMA 85
 Start Crystal Report:
Crystal Report
28-11-2014 ANKIT VERMA 86
 Select Report Type:
Crystal Report
28-11-2014 ANKIT VERMA 87
 Create Connection:
Crystal Report
28-11-2014 ANKIT VERMA 88
 Select Data Provider:
Crystal Report
28-11-2014 ANKIT VERMA 89
 Select Data Source & Database Type:
Crystal Report
28-11-2014 ANKIT VERMA 90
 Add Table By Selecting & Clicking Arrow (>):
Crystal Report
28-11-2014 ANKIT VERMA 91
 Select All Fields:
Crystal Report
28-11-2014 ANKIT VERMA 92
 Group By Records According To Specific Field:
Crystal Report
28-11-2014 ANKIT VERMA 93
 Summarized Fields:
Crystal Report
28-11-2014 ANKIT VERMA 94
 Follow Steps:
Crystal Report
28-11-2014 ANKIT VERMA 95
 Select Chart Type (If Needed):
Crystal Report
28-11-2014 ANKIT VERMA 96
 Filter Fields:
Crystal Report
28-11-2014 ANKIT VERMA 97
 Select Style:
Crystal Report
28-11-2014 ANKIT VERMA 98
 Crystal Report:
THANKYOU
P R E S E N T A T I O N B Y :
A N K I T V E R M A
( I T D E P A R T M E N T )
DOUBTS
A N K I T V E R M A A S S T . P R O F E S S O R

More Related Content

What's hot

Complete list of all sap abap keywords
Complete list of all sap abap keywordsComplete list of all sap abap keywords
Complete list of all sap abap keywordsPrakash Thirumoorthy
 
Presentation on visual basic 6 (vb6)
Presentation on visual basic 6 (vb6)Presentation on visual basic 6 (vb6)
Presentation on visual basic 6 (vb6)pbarasia
 
Book management system
Book management systemBook management system
Book management systemSHARDA SHARAN
 
Visual basic 6.0
Visual basic 6.0Visual basic 6.0
Visual basic 6.0Aarti P
 
Visual basic 6.0
Visual basic 6.0Visual basic 6.0
Visual basic 6.0sanket1996
 
Visual basic 6 black book
Visual basic 6 black bookVisual basic 6 black book
Visual basic 6 black bookAjay Goyal
 
.NET Attributes and Reflection - What a Developer Needs to Know...
.NET Attributes and Reflection - What a Developer Needs to Know....NET Attributes and Reflection - What a Developer Needs to Know...
.NET Attributes and Reflection - What a Developer Needs to Know...Dan Douglas
 
A Checklist for Migrating Big Iron Cobol Applications
A Checklist for Migrating Big Iron Cobol ApplicationsA Checklist for Migrating Big Iron Cobol Applications
A Checklist for Migrating Big Iron Cobol ApplicationsCognizant
 
Importing with ease july 2012
Importing with ease july 2012Importing with ease july 2012
Importing with ease july 2012IBM Rational
 
Component Object Model (COM, DCOM, COM+)
Component Object Model (COM, DCOM, COM+)Component Object Model (COM, DCOM, COM+)
Component Object Model (COM, DCOM, COM+)Peter R. Egli
 
Smartforms interview questions with answers
Smartforms interview questions with answersSmartforms interview questions with answers
Smartforms interview questions with answersUttam Agrawal
 
Function pointer - Wikipedia, the free encyclopedia
Function pointer - Wikipedia, the free encyclopediaFunction pointer - Wikipedia, the free encyclopedia
Function pointer - Wikipedia, the free encyclopediaRishikesh Agrawani
 
Phases of the Compiler - Systems Programming
Phases of the Compiler - Systems ProgrammingPhases of the Compiler - Systems Programming
Phases of the Compiler - Systems ProgrammingMukesh Tekwani
 

What's hot (20)

Complete list of all sap abap keywords
Complete list of all sap abap keywordsComplete list of all sap abap keywords
Complete list of all sap abap keywords
 
Intake 37 ef1
Intake 37 ef1Intake 37 ef1
Intake 37 ef1
 
COM
COMCOM
COM
 
Presentation on visual basic 6 (vb6)
Presentation on visual basic 6 (vb6)Presentation on visual basic 6 (vb6)
Presentation on visual basic 6 (vb6)
 
COM Introduction
COM IntroductionCOM Introduction
COM Introduction
 
Ejb
EjbEjb
Ejb
 
Book management system
Book management systemBook management system
Book management system
 
Visual basic 6.0
Visual basic 6.0Visual basic 6.0
Visual basic 6.0
 
Visual basic 6.0
Visual basic 6.0Visual basic 6.0
Visual basic 6.0
 
Visual basic 6 black book
Visual basic 6 black bookVisual basic 6 black book
Visual basic 6 black book
 
oracle-reports6i
oracle-reports6ioracle-reports6i
oracle-reports6i
 
Vb6.0 intro
Vb6.0 introVb6.0 intro
Vb6.0 intro
 
.NET Attributes and Reflection - What a Developer Needs to Know...
.NET Attributes and Reflection - What a Developer Needs to Know....NET Attributes and Reflection - What a Developer Needs to Know...
.NET Attributes and Reflection - What a Developer Needs to Know...
 
A Checklist for Migrating Big Iron Cobol Applications
A Checklist for Migrating Big Iron Cobol ApplicationsA Checklist for Migrating Big Iron Cobol Applications
A Checklist for Migrating Big Iron Cobol Applications
 
Chapter03 Ppt
Chapter03 PptChapter03 Ppt
Chapter03 Ppt
 
Importing with ease july 2012
Importing with ease july 2012Importing with ease july 2012
Importing with ease july 2012
 
Component Object Model (COM, DCOM, COM+)
Component Object Model (COM, DCOM, COM+)Component Object Model (COM, DCOM, COM+)
Component Object Model (COM, DCOM, COM+)
 
Smartforms interview questions with answers
Smartforms interview questions with answersSmartforms interview questions with answers
Smartforms interview questions with answers
 
Function pointer - Wikipedia, the free encyclopedia
Function pointer - Wikipedia, the free encyclopediaFunction pointer - Wikipedia, the free encyclopedia
Function pointer - Wikipedia, the free encyclopedia
 
Phases of the Compiler - Systems Programming
Phases of the Compiler - Systems ProgrammingPhases of the Compiler - Systems Programming
Phases of the Compiler - Systems Programming
 

Similar to BCA IPU VB.NET UNIT-IV

ADO .NET by Sonu Vishwakarma
ADO .NET by Sonu VishwakarmaADO .NET by Sonu Vishwakarma
ADO .NET by Sonu VishwakarmaSonu Vishwakarma
 
Work with data in ASP.NET
Work with data in ASP.NETWork with data in ASP.NET
Work with data in ASP.NETPeter Gfader
 
Accel_Series_2023Autumn_En.pptx
Accel_Series_2023Autumn_En.pptxAccel_Series_2023Autumn_En.pptx
Accel_Series_2023Autumn_En.pptxNTTDATA INTRAMART
 
DAY1- DAY2Netweaver gateway
DAY1- DAY2Netweaver gatewayDAY1- DAY2Netweaver gateway
DAY1- DAY2Netweaver gatewayGaurav Ahluwalia
 
Cloud Storage System like Dropbox
Cloud Storage System like DropboxCloud Storage System like Dropbox
Cloud Storage System like DropboxIRJET Journal
 
Sql Server 2008 Features
Sql Server 2008 FeaturesSql Server 2008 Features
Sql Server 2008 FeaturesParul Sharma
 
Management in Informatica Power Center
Management in Informatica Power CenterManagement in Informatica Power Center
Management in Informatica Power CenterEdureka!
 
127801976 mobile-shop-management-system-documentation
127801976 mobile-shop-management-system-documentation127801976 mobile-shop-management-system-documentation
127801976 mobile-shop-management-system-documentationNitesh Kumar
 
An Evening With Sql Server 2008 R2 For Edge Ug
An Evening With Sql Server 2008 R2 For Edge UgAn Evening With Sql Server 2008 R2 For Edge Ug
An Evening With Sql Server 2008 R2 For Edge Ugukdpe
 
Visual Basic.Net & Ado.Net
Visual Basic.Net & Ado.NetVisual Basic.Net & Ado.Net
Visual Basic.Net & Ado.NetFaRid Adwa
 
Microsoft Windows 7 Improved Network Access
Microsoft Windows 7 Improved Network AccessMicrosoft Windows 7 Improved Network Access
Microsoft Windows 7 Improved Network AccessMicrosoft TechNet
 
Process big data within an hour, with the OVH Public Cloud
Process big data within an hour, with the OVH Public CloudProcess big data within an hour, with the OVH Public Cloud
Process big data within an hour, with the OVH Public CloudOVHcloud
 
Assignment 5Understanding SQL100 points (Questions 1 to 7 eac.docx
Assignment 5Understanding SQL100 points (Questions 1 to 7 eac.docxAssignment 5Understanding SQL100 points (Questions 1 to 7 eac.docx
Assignment 5Understanding SQL100 points (Questions 1 to 7 eac.docxssuser562afc1
 
30 for 30: Quick Start Your Pentaho Evaluation
30 for 30: Quick Start Your Pentaho Evaluation30 for 30: Quick Start Your Pentaho Evaluation
30 for 30: Quick Start Your Pentaho EvaluationPentaho
 
Entity framework and how to use it
Entity framework and how to use itEntity framework and how to use it
Entity framework and how to use itnspyre_net
 

Similar to BCA IPU VB.NET UNIT-IV (20)

ADO .NET by Sonu Vishwakarma
ADO .NET by Sonu VishwakarmaADO .NET by Sonu Vishwakarma
ADO .NET by Sonu Vishwakarma
 
Work with data in ASP.NET
Work with data in ASP.NETWork with data in ASP.NET
Work with data in ASP.NET
 
From Data Warehouse to Lakehouse
From Data Warehouse to LakehouseFrom Data Warehouse to Lakehouse
From Data Warehouse to Lakehouse
 
Accel_Series_2023Autumn_En.pptx
Accel_Series_2023Autumn_En.pptxAccel_Series_2023Autumn_En.pptx
Accel_Series_2023Autumn_En.pptx
 
DAY1- DAY2Netweaver gateway
DAY1- DAY2Netweaver gatewayDAY1- DAY2Netweaver gateway
DAY1- DAY2Netweaver gateway
 
TedSeeberResume
TedSeeberResumeTedSeeberResume
TedSeeberResume
 
Cloud Storage System like Dropbox
Cloud Storage System like DropboxCloud Storage System like Dropbox
Cloud Storage System like Dropbox
 
ASP.NET Lecture 4
ASP.NET Lecture 4ASP.NET Lecture 4
ASP.NET Lecture 4
 
Sql Server 2008 Features
Sql Server 2008 FeaturesSql Server 2008 Features
Sql Server 2008 Features
 
Management in Informatica Power Center
Management in Informatica Power CenterManagement in Informatica Power Center
Management in Informatica Power Center
 
127801976 mobile-shop-management-system-documentation
127801976 mobile-shop-management-system-documentation127801976 mobile-shop-management-system-documentation
127801976 mobile-shop-management-system-documentation
 
An Evening With Sql Server 2008 R2 For Edge Ug
An Evening With Sql Server 2008 R2 For Edge UgAn Evening With Sql Server 2008 R2 For Edge Ug
An Evening With Sql Server 2008 R2 For Edge Ug
 
Asp.net Overview
Asp.net OverviewAsp.net Overview
Asp.net Overview
 
ASE
ASEASE
ASE
 
Visual Basic.Net & Ado.Net
Visual Basic.Net & Ado.NetVisual Basic.Net & Ado.Net
Visual Basic.Net & Ado.Net
 
Microsoft Windows 7 Improved Network Access
Microsoft Windows 7 Improved Network AccessMicrosoft Windows 7 Improved Network Access
Microsoft Windows 7 Improved Network Access
 
Process big data within an hour, with the OVH Public Cloud
Process big data within an hour, with the OVH Public CloudProcess big data within an hour, with the OVH Public Cloud
Process big data within an hour, with the OVH Public Cloud
 
Assignment 5Understanding SQL100 points (Questions 1 to 7 eac.docx
Assignment 5Understanding SQL100 points (Questions 1 to 7 eac.docxAssignment 5Understanding SQL100 points (Questions 1 to 7 eac.docx
Assignment 5Understanding SQL100 points (Questions 1 to 7 eac.docx
 
30 for 30: Quick Start Your Pentaho Evaluation
30 for 30: Quick Start Your Pentaho Evaluation30 for 30: Quick Start Your Pentaho Evaluation
30 for 30: Quick Start Your Pentaho Evaluation
 
Entity framework and how to use it
Entity framework and how to use itEntity framework and how to use it
Entity framework and how to use it
 

Recently uploaded

Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupJonathanParaisoCruz
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 

Recently uploaded (20)

Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized Group
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 

BCA IPU VB.NET UNIT-IV