Unit – 3 Objects in Visual Basic

Total Page:16

File Type:pdf, Size:1020Kb

Unit – 3 Objects in Visual Basic Unit – 3 Objects in Visual Basic An object is a combination of code and data that can be treated as a unit. An object can be a piece of an application, like a control or a form. An entire application can also be an object. Objects are things that you can program with, things that make programming easier. They contain a set of methods and properties that allow you to make the object do certain things without actually having to look at the objects code. For example, you have probably used the following statement many times: Text1.Text = " " Remember that? Well, what you are doing is setting the property Text, of the text box object Text1 to equal nothing. Objects are really easy, In fact, all the controls you see on your VB toolbox are all objects. For a better look at objects, either press F2 or click View, Object Browser. This nifty little window allows you to see all the properties and methods of the objects currently loaded. Although Visual Basic is not a completely object orientated language it does allow us to use objects in our code. You can declare an object using either the Dim, Private or Public keyword. As with other variables, the Private and Public keywords can only be used in the General Declarations procedure. You will probably know that declaring something as Public allows anyone to access the variable, and declaring it as Private only lets the current module of code access the variable. Code: Private m_strName As String Well, here is a simple object variable declaration: Code: Private m_clsClass1 As Class1 VB allows you to use the New keyword when you declare an object variable: Code: Private m_clsClass1 As New Class1 When your program starts, the object is automatically created so you can use its methods etc immediately. If your object fires up a connection a database and gets some records when you start, or if your object simply contains a large amount of code, then you may be causing the users machine to run slower then needed. If you don't make a call on the object for a few minutes, then you are wasting memory by having the object in memory. So, what can you do? Well, simply avoid using the New keyword when declaring the object. Every time you want to use it, create a new instance of it and then destroy it When dealing with objects you use the Set keyword to perform some operations. When we want to destroy an object, we set it to nothing, quite literally: Code: Set m_clsClass1 = Nothing This way, we only have it loaded in memory when we need to use it. If you have a lot of users using a database object for example, then you may want to open and close connections for each user. This is called object 'pooling' where you pool all your resources together and dish them out when requested. Microsoft makes this easier by giving you Microsoft Transaction Server. Objects let you declare variables and procedures once and then reuse them whenever needed. For example, if you want to add a spelling checker to an application you could define all the variables and support functions to provide spell-checking functionality. If you create your spelling checker as a class, you can then reuse it in other applications by adding a reference to the compiled assembly. Better yet, you may be able to save yourself some work by using a spelling checker class that someone else has already developed. Each object in Visual Basic is defined by a class. A class describes the variables, properties, procedures, and events of an object. Objects are instances of classes; you can create as many objects you need once you have defined a class. To understand the relationship between an object and its class, think of cookie cutters and cookies. The cookie cutter is the class. It defines the characteristics of each cookie, for example size and shape. The class is used to create objects. The objects are the cookies. Two examples in Visual Basic might help illustrate the relationship between classes and objects. • The controls on the Toolbox in Visual Basic represent classes. When you drag a control from the Toolbox onto a form, you are creating an object — an instance of a class. • The form you work with at design time is a class. At run time, Visual Basic creates an instance of the form's class — that is, an object. Objects newly created from a class are often identical to each other. Once they exist as individual objects, however, their variables and properties can be changed independently of the other instances. To create an object from a class 1. Determine from which class you want to create an object. 2. Write a Dim Statement to create a variable to which you can assign a class instance. The variable should be of the type of the desired class. Dim nextCustomer As customer 3. Add the New Operator keyword to initialize the variable to a new instance of the class. Dim nextCustomer As New customer 4. You can now access the members of the class through the object variable. nextCustomer.accountNumber = lastAccountNumber + 1 How to build Object models: You can create your object model from an existing database and use the model in its default state. You can also customize many aspects of the model and its behavior. If you are using Visual Studio, you can use the Object Relational Designer to create your object model. If you do not have an existing database and want to create one from an object model, you can create your object model by using your code editor and Create Database Documentation for the O/R Designer provides examples of how to generate a Visual Basic object model by using the O/R Designer. UNIT -4 Data Access Objects: Data Access Over the years, Visual Basic has become an application development tool used for developing Client/Server applications. This is an area of Visual Basic that seems to be getting better and better with every new version. For instance, Visual Basic 6.0 has introduced a new way of accessing data through ADO & OLEDB. And Microsoft says you stick to ADO because that is the future. Old methods like DAO and RDO are already obsolete. If you are wondering about all the stuff I mentioned, I would say, "do not worry". All that is part of data access and we will thoroughly discuss about DAO, RDO and ADO in the next couple of chapters. What is Data Access? Data access is a feature of Visual Basic that allows you to access and manipulate any database from Visual Basic. The database may be either MS-Access database or FoxPro database or it may also be any of the relational databases such as Oracle. You can develop applications in Visual Basic that can access data in a database. The database may be on the same machine as the application or it may be on database server that is far away from Visual Basic application. Whatever may be the case, you can access and manipulate the data using applications written in Visual Basic. The following are the various ways of access database: Data Access Objects (DAO) This is an object model that has a collection of objects using which you can access a database. This model gives complete control on the database. This model uses Jet Engine, which is the native database engine used by Visual Basic and MS-Access. This was the first model to be used in Visual Basic. Though it is possible to access any database using this, it is particularly suitable for MS-Access database and not suitable for ODBC data sources such as Oracle and MS-SQL Server. So, Microsoft later introduced RDO. Remote Data Objects (RDO) These objects are only used to access ODBC data sources such as Oracle. These objects access databases that are on remote machine (database server). This object model has less number of objects compared with DAO and more suitable for accessing remote databases. We will discuss more about RDOs in chapter 18. ActiveX Data Objects (ADO) Microsoft has introduced a new object model called ActiveX Data Objects (ADO), which is based on ActiveX technology, for the first time in Visual Basic 6.0. This object model has very few objects and it is based on OLE DB interface. OLE DB interface is a new interface (replacing ODBC and others), through which you can access data of all formats in the same manner. ADO uses OLE DB providers to access the data. That means each database is accessed through OLE DB provider. And ADO provides the programming framework to access OLE DB. ADO is also much easier to deal with. That is all about the introduction to data access methods. If you could not understand every part of that, don’t worry. As we unfold things, you will start understanding all about data access. But one thing is for sure. Visual Basic has got so many ways of accessing data (various object models and controls). It is certainly going to confuse a beginner. Also remember, that there is no single method that is efficient in all circumstances. Given the task on hand, choose the best-suited method. My personal suggestion is – use ADO as much as you can. Because that is what Microsoft heralds as the future. Accessing MS-Access database First, let us understand how to access data using a very simple and old method – using data control.
Recommended publications
  • *Library/ Mentoring/ Association/ Club Activities *Library/ Mentoring
    REGULATION 2020-21 B.Sc. INFORMATION TECHNOLOGY SEMSTER III B.Sc. INFORMATION TECHNOLOGY SL. COMPONENTS HOURS CREDITS PART III CORE SUBJECTS 1. Numerical Method and Operation Research 4 4 2. Object Oriented Programming with C++ 4 4 3. Object Oriented Programming with C++ - LAB 6 3 ALLIED SUBJECTS - 1 4. Data Structure 4 4 5. Data Structure – LAB 4 2 6. Skill Based Core Subject – I DTP 5(IT+4P) 4 7. Non – Major Elective – I 2 2 8. Common Yoga -- 2 TOTAL (5T + 3P = 8 COURSE) 30* 25 *Library/ Mentoring/ Association/ Club Activities SEMSTER IV B.Sc. INFORMATION TECHNOLOGY SL. COMPONENTS HOURS CREDITS PART III CORE SUBJECTS 1. Java Programming 4 4 2. Java Programming Lab 6 3 3. Operating System 4 4 ALLIED SUBJECTS - 1 4. Relational Data Base Management System 4 4 5. ORACLE – LAB 4 2 6. Skill Based Core Subject – II VISUAL PROGRAMMING 5(2T+3P) 4 7. Non – Major Elective – II 2 2 8. Computers for Digital Era -- 2 9. Extension Activity -- 1 10. Library Mentoring and Associations 1 -- TOTAL (5T + 3P = 8 COURSE) 30* 26 *Library/ Mentoring/ Association/ Club Activities SEMSTER V B.Sc. INFORMATION TECHNOLOGY SL. COMPONENTS HOURS CREDITS PART III CORE SUBJECTS 1. Scripting Language 4 4 2. Software Engineering and Testing 4 4 3. Data Communication and Networking 4 4 4. Scripting Language – LAB 6 3 5. Major Elective – I (Group – A) 4 4 Skill Based Common Subject – 6. Personality Development /Effective Communication/Youth 2 2 Leadership 7. Mini Project 5 5 TOTAL (5T + 1P + 1Project = 7 COURSE) 30* 26 *Library/ Mentoring/ Association/ Club Activities SEMSTER VI B.Sc.
    [Show full text]
  • Making Access Project and Data Technologies Choices
    05 0672321025 CH03 8/10/01 8:20 AM Page 71 Making Access Project and CHAPTER Data Technologies Choices 3 IN THIS CHAPTER • Using Microsoft Database Versus Access Database Project 72 • Using DAO Versus ADO Versus XML 75 05 0672321025 CH03 8/10/01 8:20 AM Page 72 The Root of Power Programming 72 PART I Before Access 2000, when you created an application, you had to plan whether you wanted to use a Jet (the database engine Access uses natively) or a client/server back end. Depending on the type of back end chosen, you would use various methods to create the application. Although this is still the case, you now have more choices to make when starting on a project. Now, in addition to the back-end choice, you must decide what type of database container to use: the traditional MDB or ADP. The other choice to make is the method of accessing the data while working in VBA: DAO (Data Access Objects), which has been used since Access 2, or ADO (ActiveX Data Objects), the data-access technology now used throughout a number of Microsoft products, including Visual InterDev. You now have an additional choice of XML (Extensible Markup Language), which transfers data between systems and applications. Helping you decide which technology to use in which case is what this chapter is all about. When you first look at the choices, it’s hard to see when one should be used over another. NOTE This chapter isn’t intended as an in-depth discussion of these technologies.
    [Show full text]
  • Oracle® Provider for OLE DB Developer's Guide
    Oracle® Provider for OLE DB Developer's Guide 19c for Microsoft Windows E96615-01 May 2019 Oracle Provider for OLE DB Developer's Guide, 19c for Microsoft Windows E96615-01 Copyright © 1999, 2019, Oracle and/or its affiliates. All rights reserved. Primary Author: Maitreyee Chaliha Contributing Authors: Janis Greenberg, Alex Keh, Eric Belden, Riaz Ahmed, Kiminari Akiyama, Christian Shay, Valarie Moore, Neeraj Gupta, Sinclair Hsu, Gopal Kirsur, Sunil Mushran, Rajendra Pingte, Helen Slattery, Vikhram Shetty, Sujith Somanathan, Mark Williams This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are "commercial computer software" pursuant to the applicable Federal Acquisition Regulation and agency- specific supplemental regulations.
    [Show full text]
  • Database Connectivity Toolkit for Fast Transactions User Manual
    Database Connectivity Toolkit for Fast Transactions User Manual Ovak Technologies 2016 Contents 1. Introduction ......................................................................................................................................... 3 1.1. Definitions and Acronyms ............................................................................................................ 3 1.2. Purpose .......................................................................................................................................... 3 1.3. Overview ....................................................................................................................................... 3 2. Open Database Connectivity (ODBC) ............................................................................................... 4 3. Registering ODBC Driver .................................................................................................................. 5 3.1. Opening the ODBC Driver Manager ............................................................................................. 5 3.2. Configuring the default DSN entry ............................................................................................... 6 3.3. Adding a new DSN entry .............................................................................................................. 7 3.4. Removing an existing DSN entry .................................................................................................. 8 4. Connecting to a Database ..................................................................................................................
    [Show full text]
  • Jason T. Roff This Book Is a One-Stop Guide to ADO, the Universal Data
    ADO: ActiveX Data Objects Jason T. Roff Publisher: O'Reilly First Edition June 2001 ISBN: 1-56592-415-0, 618 pages This book is a one-stop guide to ADO, the universal data access solution from Microsoft that allows easy access to data from multiple formats and platforms. It includes chapters on the Connection, Recordset, Field, and Command objects and the Properties collection; ADO architecture, data shaping, and the ADO Event Model; brief introductions to RDS, ADO.NET, and SQL; and a comprehensive alphabetic reference to every ADO object, method, property, and event. IT-SC book 2 IT-SC book Copyright © 2001 O'Reilly & Associates, Inc. All rights reserved. Printed in the United States of America. Published by O'Reilly & Associates, Inc., 101 Morris Street, Sebastopol, CA 95472. Nutshell Handbook, the Nutshell Handbook logo, and the O'Reilly logo are registered trademarks of O'Reilly & Associates, Inc. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and O'Reilly & Associates, Inc. was aware of a trademark claim, the designations have been printed in caps or initial caps. The association between the image of an ivory-billed woodpecker and ActiveX Data Objects is a trademark of O'Reilly & Associates, Inc. While every precaution has been taken in the preparation of this book, the publisher assumes no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. IT-SC book 3 Preface Introduction and Organization Conventions Used in This Book Comments and Questions Acknowledgments I: Learning ADO 1.
    [Show full text]
  • Exam 70-464: Developing Microsoft SQL Server Databases – Skills Measured
    Exam 70-464: Developing Microsoft SQL Server Databases – Skills Measured Audience Profile This exam is intended for database professionals who build and implement databases across organizations and who ensure high levels of data availability. Their responsibilities include creating database files, data types, and tables; planning, creating, and optimizing indexes; ensuring data integrity; implementing views, stored procedures, and functions; and managing transactions and locks. Skills Measured NOTE: The bullets that appear below each of the skills measured are intended to illustrate how we are assessing that skill. This list is not definitive or exhaustive. NOTE: In most cases, exams do NOT cover preview features, and some features will only be added to an exam when they are GA (General Availability). Implement database objects (30–35%) Create and alter tables develop an optimal strategy for using temporary objects, including table variables and temporary tables; define alternatives to triggers; define data version control and management; implement @Table and #table appropriately; create calculated columns; implement partitioned tables, schemas, and functions; implement column collation; implement online transaction processing (OLTP); implement columnstore and sparse columns Design, implement, and troubleshoot security implement data control language statements appropriately, troubleshoot connection issues, implement execute as statements, implement certificate-based security, create loginless users, define appropriate database roles
    [Show full text]
  • Microsoft Patches Were Evaluated up to and Including CVE-2019-1303
    Honeywell Security Group 2700 Blankenbaker Pkwy, Suite 150 Louisville, KY 40299 Phone: 1-502-297-5700 Phone: 1-800-323-4576 Fax: 1-502-666-7021 https://www.security.honeywell.com The purpose of this document is to identify the patches that have been delivered by Microsoft® which have been tested against Pro-Watch. All the below listed patches have been tested against the current shipping version of Pro-Watch with no adverse effects being observed. Microsoft Patches were evaluated up to and including CVE-2019-1303. Patches not listed below are not applicable to a Pro-Watch system. 2019 – Microsoft® Patches Tested with Pro-Watch .NET Quality Rollup for .NET Framework CVE-2019-1371 Internet Explorer Memory Corruption Vulnerability CVE-2019-1368 Windows Secure Boot Security Feature Bypass Vulnerability CVE-2019-1367 Scripting Engine Memory Corruption Vulnerability CVE-2019-1366 Chakra Scripting Engine Memory Corruption Vulnerability CVE-2019-1365 Microsoft IIS Server Elevation of Privilege Vulnerability CVE-2019-1359 Jet Database Engine Remote Code Execution Vulnerability CVE-2019-1358 Jet Database Engine Remote Code Execution Vulnerability CVE-2019-1357 Browser Spoofing Vulnerability Microsoft Edge based on Edge HTML Information Disclosure CVE-2019-1356 Vulnerability CVE-2019-1347 Windows Denial of Service Vulnerability CVE-2019-1346 Windows Denial of Service Vulnerability CVE-2019-1345 Windows Kernel Information Disclosure Vulnerability CVE-2019-1344 Windows Code Integrity Module Information Disclosure Vulnerability CVE-2019-1343 Windows
    [Show full text]
  • Oracle Provider for OLE DB Developer's Guide, 12C Release 1 (12.1) for Microsoft Windows E18594-02
    Oracle® Provider for OLE DB Developer's Guide 12c Release 1 (12.1) for Microsoft Windows E18594-02 May 2013 Oracle Provider for OLE DB Developer's Guide, 12c Release 1 (12.1) for Microsoft Windows E18594-02 Copyright © 1999, 2013, Oracle and/or its affiliates. All rights reserved. Contributor: The Oracle Database 12c documentation is dedicated to Mark Townsend, who was an inspiration to all who worked on this release. Contributors: Janis Greenberg, Eric Belden, Riaz Ahmed, Kiminari Akiyama, Neeraj Gupta, Sinclair Hsu, Gopal Kirsur, Sunil Mushran, Rajendra Pingte, Helen Slattery, Valarie Moore, Vikhram Shetty, Sujith Somanathan, Alex Keh, Christian Shay This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S.
    [Show full text]
  • Automating Tasks Using Powershell Scripting
    022_067233092X_ch21.qxp 12/10/09 11:56 AM Page 699 CHAPTER 21 IN THIS CHAPTER . Understanding Shells Automating Tasks Using . Introduction to PowerShell . Understanding the PowerShell PowerShell Scripting Basics . Using Windows PowerShell Shells are a necessity in using operating systems. They give the ability to execute arbitrary commands as a user and the ability to traverse the file system. Anybody who has used a computer has dealt with a shell by either typing commands at a prompt or clicking an icon to start a word processing application. A shell is something that every user uses in some fashion. It’s inescapable in whatever form when working on a computer system. Until now, Windows users and administrators primarily have used the Windows Explorer or cmd command prompt (both shells) to interact with most versions of the Window operating systems. With Microsoft’s release of PowerShell, both a new shell and scripting language, the current stan- dard for interacting with and managing Windows is rapidly changing. This change became very evident with the release of Microsoft Exchange Server 2007, which used PowerShell as its management backbone, the addition of PowerShell as a feature within Windows Server 2008, and now the inclu- sion of PowerShell as part of the Windows 7 and Windows Server 2008 R2 operating systems. In this chapter, we take a closer look at what shells are and how they have developed. Next, we review Microsoft’s past attempts at providing an automation interface (WSH) and then introduce PowerShell. From there, we step into under- standing the PowerShell features and how to use it to manage Windows 2008.
    [Show full text]
  • Visual Basic 6 and Visual Basic .NET: Differences
    C0261587x.fm Page 19 Thursday, November 15, 2001 2:02 PM Visual Basic 6 and Visual Basic .NET: Differences More than three years ago, the Microsoft Visual Basic team set out to create Visual Basic .NET. At that time managers would kid the development team by saying that they were making only three “simple” changes to Visual Basic 6: a new runtime system, a new development environment, and a new compiler. The Visual Basic development team spent the next three years working on one of these changes: the new compiler. Two other teams provided the develop- ment environment and runtime. As we pointed out in Chapter 1, the end result is not a new version of Visual Basic 6 but an entirely new product: Microsoft Visual Basic .NET. The name is important for two reasons. First, Visual Basic is still Visual Basic. Second, Visual Basic .NET is not Visual Basic 7. This chapter describes the three “simple” changes made to create Visual Basic .NET, including changes to the runtime, the development environment, and the compiler. Microsoft also added other features to Visual Basic .NET along the way, including a new forms package and a new debugger, and these are also discussed in this chapter. .NET Framework vs. ActiveX As a Visual Basic developer, you will normally not be concerned with the run- time systems that underlie your Visual Basic applications. Visual Basic 6, for example, makes the details of how ActiveX works largely transparent. The Visual Basic 6 runtime handles all of the messy details that come with imple- menting an ActiveX-compliant component or application.
    [Show full text]
  • Class: ______Date: ______ID: A
    Name: ________________________ Class: ___________________ Date: __________ ID: A Chapter 8 Test Bank True/False Indicate whether the statement is true or false. ____ 1. One of ASP.NET’s greatest strengths is its ability to access and manipulate databases. ____ 2. In today’s ever-evolving technology environment, it is often necessary for an application to access multiple databases created in different database management systems. ____ 3. ASP.NET includes minimal support for ODBC. ____ 4. By eliminating the ODBC layer, your ASP.NET programs will be faster. ____ 5. ASP.NET code that directly accesses a database is more difficult to write than code that goes through ODBC. ____ 6. To connect to a SQL Server database, you instantiate an object of the SqlConnection class. ____ 7. One SqlConnection object you should use whenever you open a database connection with the Open() method is the Disconnect()method to disconnect the database connection. ____ 8. If you do not close a database connection, it remains open until you open another database. ____ 9. You must first select a database with the USE database statement before you can use it. ____ 10. It is good practice to make sure your program has connected to a database successfully before it attempts to read, write, add, or modify records. ____ 11. Instead of using an if...else block and the State property to determine whether a database connection was successful, you can also execute the Open() method within a try...catch block. ____ 12. You use the ExeReader() method of the SqlCommand class to create a SqlDataReader object, which you must assign to a variable.
    [Show full text]
  • Powershell: a More
    05_0672329530_ch03.qxd 4/3/07 5:44 PM Page 57 CHAPTER 3 IN THIS CHAPTER . Introduction PowerShell: A More . Object Based In-Depth Look . Understanding Providers . Understanding Errors . Error Handling . PowerShell Profiles Introduction . Understanding Security This chapter delves into some specifics of how PowerShell . The PowerShell Language works that you need to understand for the later scripting chapters. Try not to get too bogged down in details; instead, focus on understanding the concepts. Because PowerShell is a change from Windows scripting of the past, you might also need to change your scripting methods. With practice, it will start to feel as familiar as Windows scripting via VBScript or JScript, which was the standard method for Windows automation tasks. Object Based Most shells operate in a text-based environment, which means you typically have to manipulate the output for automation purposes. For example, if you need to pipe data from one command to the next, the output from the first command usually must be reformatted to meet the second command’s requirements. Although this method has worked for years, dealing with text-based data can be difficult and frustrating. Often, a lot of work is necessary to transform text data into a usable format. Microsoft has set out to change the stan- dard with PowerShell, however. Instead of transporting data as plain text, PowerShell retrieves data in the form of .NET Framework objects, which makes it possible for commands (cmdlets) to access object properties and methods directly. This change has simplified shell use. Instead of modifying text data, you can just refer to the 05_0672329530_ch03.qxd 4/3/07 5:44 PM Page 58 58 CHAPTER 3 PowerShell: A More In-Depth Look required data by name.
    [Show full text]