Home > Store

Visual Basic.Net Programming for Business

Register your product to gain access to bonus material or receive a coupon.

Visual Basic.Net Programming for Business

Book

  • Sorry, this book is no longer in print.
Not for Sale

About

Features

  • Clear and concise examples throughout–Explains and models important concepts before students complete the programming cases.
    • Gives students a clear understanding of the topic by seeing multiple examples. Allows instructorsto “teach through“ the examples by opening the applications that demonstrate the topics in each chapter.

  • Accessible presentation of fundamental programming concepts–Introduced when they can be easily assimilated into the core knowledge of programming in Visual Basic.
    • Helps students to not become overwhelmed with information before seeing code examples. Enables instructorsto focus on emphasizing how a new topic or concept relates to what students have already learned.

  • Consistent four-step methodology–Used in every programming case and each chapter to plan the application, design the interface, write the code, and run the application.
    • Teaches students how to plan an application by first completing a design phase in order to enforce a sound development methodology.

  • Real-life programming examples–Emphasizes building complete applications.
    • Familiarizes students with the kinds of business problems and process they might see in the real world. Supplies instructorswith important material for presenting students with a comprehensive understanding of application development.

  • Specific business problems and processes–Defined for each project.
    • Teaches Visual basic.NET in the context of a specific problem or process that the application addresses.

  • Integrated cases throughout.
    • Enables students to see different methods for solving a problem or implementing a process, as well as richer business problems and processes in the programming examples.

  • Comprehensive performance objectives–Includes the condition, performance, and criterion.
    • Details the high-level performance tasks students need to master.

  • Chapter-end materials–i.e., comprehensive summary; multiple-choice, true/false, short-answer questions; guided exercises; and case studies.
    • Reinforces the concepts presented in each chapter and its programming examples.

  • New features in .NET–Includes chapters addressing new features in the .NET Framework, including Web Forms, ADO.NET, XML, and Crystal Reports.
    • Enables instructors to quickly come up to speed on these new features, and introduce these to students.

  • Packaging and deploying applications–Includes an Appendix that shows how to package, deploy, and distribute Windows and ASP.NET applications.
    • Teaches students how to distribute the Windows and Web applications they have created.

Description

  • Copyright 2003
  • Dimensions: 8-1/2" x 10-7/8"
  • Pages: 641
  • Edition: 1st
  • Book
  • ISBN-10: 0-13-047368-5
  • ISBN-13: 978-0-13-047368-4

With the release of Visual Studio .Net, Visual Basic is now a truly object-oriented language. This text teaches programming concepts with Visual Basic .NET, emphasizing programs that support all aspects of creating Windows® and ASP.NET applications and Web forms for businesses that obtain input, perform data processing, generate output, and store program data for subsequent use. The approach to programming utilizes integrated cases that build from chapter to chapter; the cases are based upon common business problems and the processes integral to solving them.

  • Consistent four-step methodology—Used in every programming case and each chapter to plan the application, design the interface, write the code, and run the application.
  • Real-life programming examples—Uses a business-oriented Visual Basic. NET project to illustrate and explain the topics in the chapter.
  • Code examples—As a Visual Basic.NET feature is first presented, learners are presented with code examples that demonstrate how to write the code that implements the feature.
  • Integrated business cases throughout—Enables students to see different methods for solving a problem or implementing a process.
  • Strong and earlier, coverage of database issues—Database material is introduced in Chapter six.
  • Optional higher-level topi6—ASP.NET, XML (another perhaps) are presented later in the text for optimum flexibility.
  • Student-focused pedagogy—Through consistent chapter organization (list) students are provided the framework to assess understanding, apply their knowledge, and code better programs.

Sample Content

Table of Contents

(NOTE: Each chapter begins with Performance Objectives and concludes with an End of Chapter Summary, Multiple-Choice Questions, True-False Questions, Short-answer Questions, Exercises, Guided Exercises, and Case Studies.)

1. Understanding Programming Concepts and Writing a Simple Visual Basic Application.

Introducing Visual Studio.NET. The .NET Framework. Do I Need a Plan? Procedural Programming. Event Driven Programming. Planning Event-Driven Programs. Working with Objects. Objects. Properties. and Methods. Steps for Planning and Creating Visual Basic.NET Applications. Using the Toolbox. Creating an Application.

2. Using Variables, Constants, and Functions in Calculations.

Using Data Stored in Controls to Perform Calculations. Using Variables in Calculations. Using Variables in Code. Variable Data Types. Naming Variables. Declaring Variables. Variable Scope. Using Constants in Calculations. Naming Constants. Declaring Constants. Obtaining User Input. The ComboBox Control. Using Functions in Calculations. Using the InputBox Function to Obtain User Input. Using the Val Function to Convert Text Entries to Numeric Data. Operator Precedence. Formatting Results for Output.

3. Processing Decisions.

Using Programming Structures. Using Decision Structures. Using the If...Then Statement. Using Flowcharts to Model Decision Statements. Using If...Then...Else Decision Statements. Nested Decision Structures. Displaying Messages for Verifying Decisions. Using an If Statement and the MsgBox function to Handle the Event for Exiting an Application. Using If Statements with Check Boxes and Radio Buttons. Radio Button and Group Box Controls. The Check Box Control. Using Decision Statements for Data Validation. Checking for a Required Value. Checking for Numeric Values. Checking for Required Data. Using If Statements with Text Strings. Comparing Text Strings. Using the UCase and LCase Functions with Text Strings. Using Logical Operators with If Statements. Using the Select Case Decision Statement. Using Select...Case Statements. Using a Select...Case Statement with Radio Buttons.

4. Using Looping Structures and Lists.

Introducing Repetition Structures. Using For...Next Statements. Displaying the Results of a Repetition Statement. Incrementing and Decrementing the Counter Variable. Endless Loops. Using Do...Loop Statements. Repeating Statements in a Do...Loop While a Condition Is True. Repeating Statements in a Do...Loop Until a Condition Is True. Exiting a Do...Loop Before a Condition is True. Working with Lists. Using the Windows Forms ListBox Control. Selecting Items in a List Using the ListBox Control for Displaying Formatted Lists. Using the For...Each...Next Statement.

5. File Access, Dialog Boxes, Error Handling, and Menus.

Data File Basics. Sequential File Access. Reading and Writing Data by Using Sequential File Access. Random File Access. Creating a User-Defined Data Type Record Structure. Declaring a Structure Variable. Opening a Random Access File. Reading Records from a Random Access File. Writing Records to a Random Access File. Processing I/O Errors by Using Exceptions. Using the Try...Catch...Finally Statement to Handle I/O Exceptions. Adding Common Dialog Boxes to Windows Forms. Using the OpenFileDialog Control. Using the SaveFileDialog Control. Using the FontDialog Control. Exceptions and Common Dialog Controls. Using the RichTextBox Control for Reading and Writing Formatted Text. Changing Font Attributes in a RichTextBox Control. Adding Menus to Windows Forms. Creating and Adding Menus to Windows Forms. Adding a MainMenu object to a form. Using the MainMenu Control. Writing Code to Handle Menu-Item Click Events. Adding a Context Menu to a Form.

6. Connecting to Databases With ADO.NET.

Database Concepts. Introducing ADO.NET. ADO.NET and Disconnected Data. ADO.NET and XML. Managed Providers. Creating and Generating a Dataset. Creating a Dataset by Using the Server Explorer. Filling a Dataset. Using the DataGrid Control. Changing Data in a DataGrid. Binding Controls to a Database.

7. Using Sub Procedures, Function Procedures, and Modules.

Procedures. Sub procedures and Function Procedures. Using Sub Procedures. Declaring a Sub Procedure. Determining the Accessibility of a Sub Procedure. Creating User-Defined Procedures. Calling a Sub procedure. Passing Arguments to Sub Procedures. Using a Sub Procedure to Perform Data Validation. Using Function Procedures. Intrinsic Function Procedures. Creating User-Defined Function Procedures. Passing Arguments ByVal and ByRef. Organizing Procedures by Using the #Region Statement. Using Modules and Multiple Forms in Windows Applications.

8. Using Arrays, Structures, and Collections.

Using Arrays. Declaring a Single-Dimension Array. Adding Data to an Array at Run Time. Declaring a Two-dimensional Array. Using Dynamic Arrays. Populating an Array by Reading a Disk File. Using Structures with Arrays. Declaring Structures. Declaring Structure Variables. Using an ArrayList to Create a Collection.

9. Object Orienting Programming with Visual Basic.NET.

Object-Oriented Programming. Objects and Classes. Object Properties and Methods. Encapsulation and Abstraction. Using Classes. Inheritance and Polymorphism. Creating Classes. Using Fields and Properties to Add Information to Objects. Storing Information in Objects by Using Fields. Storing Information in Objects by Using Properties. Using Fields versus Properties to Store Information in an Object. Class Methods. Creating and Calling Class Methods. Using Inheritance to Create a Derived Class. Overriding Methods.

10. Creating Distributed Web Applications by Using ASP.NET.

Creating Distributed Web Applications by Using ASP.NET Why Use ASP.NET? ASP.NET System Requirements. Web Design Basics: Designing Web Pages by Using HTML. Adding Interactivity to Web Pages by Using ASP.NET. Creating an ASP.NET Web Forms Project. The Web Forms Design Interface. Using Controls. Adding Web Server Controls to a Web Forms Project. Validating Data in Web Forms Projects. Validation Controls. Using ADO.NET Data Access Objects in Web Forms.

11. XML and ADO.NET.

Why Use XML? Markup Languages. Characteristics of XML. Creating XML Files by Using the XML Designer. Adding an XML File to a Project. Validating XML Data. Saving XML Data to a File. Creating an Application that Reads Data from an XML File. Creating an Application that Writes Data to an XML File. XML Schemas. XML Elements, Attributes, and Types. Naming Conventions for Elements and Attributes. Creating Schemas. Creating an XML Schema from an XML File. Creating a DataSet Schema by Using the XML Designer. Creating Relationships in XML Schemas.

12. Graphics, Printing, and Reporting with Crystal Reports.

Displaying Graphics in Applications. Using Vector Graphics in Applications. Using Raster Graphics in Applications. Using the Visual Studio.NET Image Editor. Displaying Bitmap Images in Windows Applications. Displaying Bitmap Images in Web Forms Applications. Previewing and Printing Text by Using the PrintPreviewDialog and PrintDialog Controls. Reporting and Printing Information by Using Crystal Reports. Creating a Report by Using the Report Expert. Displaying a Report.

Appendix A: Packaging and Deploying Visual Basic.NET Applications.

Installing .NET Framework Components. The Windows Installer and Setup Projects. Creating Setup and Deployment Projects. Creating a Setup and Deployment Project by Using the Windows Installer for a Windows Application. Creating a Setup and Deployment Project by Using the Windows Installer for a Web Forms Application.

Appendix B: Numeric Data Types and Type Conversions.

Using the Option Strict Statement. Widening and Narrowing Conversions. Widening Conversions. Narrowing Conversions. Option Strict and Implicit and Explicit Conversions.

Reference Guide.


Glossary.

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020