Wrox Home  
Search titles for:

Topic: Visual Basic

Cover image for product 0470137053
Visual Basic 2005 with .NET 3.0 Programmer's Reference
Rod Stephens
ISBN: 978-0-470-13705-5
Paperback
1200 pages
May 2007

Back to description


About This Title  |  Chapters on Demand  |  Download Code  |  Errata  |  P2P Forum for This Title
Add to Cart
Chapter 1: IDE

This chapter describes the Visual Studio integrated development environment (IDE). It explains the most important windows... more

Chapter 2: Controls in General
US $4.99

A control is a programming object that has a graphical component. A control sits on a form and interacts with the user, providing... more

Chapter 3: Program and Module Structure
US $4.99

A Visual Basic solution contains one or more related projects. A project contains files related to some topic. Usually, a... more

Chapter 4: Data Types, Variables, and Constants
US $4.99

Variables are among the most fundamental building blocks of a program. A variable is a program object that stores a value... more

Chapter 5: Operators
US $4.99

An operator is a basic code element that performs some operation on one or more values to create a result. The values the... more

Chapter 6: Subroutines and Functions
US $4.99

Subroutines and functions enable you to break an otherwise unwieldy chunk of code into manageable pieces. They enable you... more

Chapter 7: Program Control Statements
US $4.99

Program control statements tell an application which other statements to execute under a particular set of circumstances.... more

Chapter 8: Error Handling
US $4.99

Although it is theoretically possible to write a program that perfectly predicts every possible situation that it might encounter... more

Chapter 9: Introduction to Windows Forms Controls
US $4.99

Controls are an extremely important part of any interactive application. They give information to the user... more

Chapter 10: Forms
US $4.99

The Visual Basic Windows... more

Chapter 11: Database Controls and Objects
US $4.99

The Windows forms controls described in Chapter 9 allow the application and the user to communicate. They let the application... more

Chapter 12: Custom Controls
US $4.99

Visual Basic .NET provides a rich assortment of controls that you can use to build applications. However, those controls... more

Chapter 13: Drag and Drop, and the Clipboard
US $4.99

The clipboard is an object where programs can save and restore data. A program can save data in multiple formats and retrieve... more

Chapter 14: UAC Security
US $4.99

The previous chapters have dealt with general Visual Basic programming tasks. They show how to write the Visual Basic code... more

Chapter 15: OOP Concepts
US $4.99

This chapter explains the fundamental ideas behind object-oriented programming (OOP). It describes the three main features... more

Chapter 16: Classes and Structures
US $4.99

A variable holds a single value. It may be a simple value such as an Integer or String, or a reference that points to a more... more

Chapter 17: Namespaces
US $4.99

In large applications, it is fairly common to have name collisions. One developer might create an... more

Chapter 18: Collection Classes
US $4.99

Visual Basic .NET includes a large assortment of pre-built classes that store and manage groups of objects. These collection... more

Chapter 19: Generics
US $4.99

Classes are often described as cookie cutters for creating objects. You define a class, and then you can use it to make any... more

Chapter 20: Drawing Basics
US $4.99

Visual Basic .NET provides a large assortment of objects for drawing and for controlling drawing attributes. The... more

Chapter 21: Brushes, Pens, and Paths
US $4.99

After Graphics, Pen and Brush are the two most important graphics classes. Whenever you perform any drawing operation that... more

Chapter 22: Text
US $4.99

Text is different from the lines, rectangles, ellipses, and other kinds of shapes that a program typically draws. A program... more

Chapter 23: Image Processing
US $4.99
Chapter 24: Printing
US $4.99

Visual Basic .NET provides several good tools for printing. String formatting objects enable you to determine how text is... more

Chapter 25: Reporting
US $4.99

Visual Studio 2005 Professional Edition and the higher editions come with Crystal Reports for Visual Studio 2005. Crystal... more

Chapter 26: Windows Presentation Foundation
US $4.99

Version 3.0 of the .NET Framework includes everything in previous versions of the Framework and a lot more. That means everything... more

Chapter 27: Configuration and Resources
US $4.99

A very simple application performs a well-defined task that changes minimally over time. You may not need to configure such... more

Chapter 28: Streams
US $4.99

At some very primitive level, all pieces of data are just piles of bytes. The computer doesn’t really store invoices, employee... more

Chapter 29: File-System Objects
US $4.99

Visual Basic includes a bewildering assortment of objects that you can use to manipulate drives, directories, and files.... more

Chapter 30: Windows Workflow Foundation
US $4.99

A workflow, in the generic sense, consists of the series of stages that a piece of work passes through while it is still... more

Chapter 31: Windows Communication Foundation
US $4.99

Programmers have long been able to have one program to call routines provided by another program that is running either on... more

Chapter 32: Useful Namespaces
US $4.99

The .NET Framework is a library of classes, interfaces, and types that add extra power to Visual Studio .NET. These features... more

Appendix A : Useful Control Properties, Methods, and Events
US $4.99

A control interacts with a program or the user through properties, methods, and events. Although each type of control provides... more

Appendix B : Variable Declarations and Data Types
US $4.99

This appendix provides information about variable declarations and data types.... more

Appendix C : Operators
US $4.99

The Visual Basic operators fall into five main categories: arithmetic, concatenation, comparison, logical, and bitwise. The... more

Appendix D : Subroutine and Function Declarations

This appendix provides information about subroutine, function, and generic declarations. A property procedure includes a... more

Appendix E : Control Statements
US $4.99

Control statements tell an application which other statements to execute under a particular set of circumstances. They control... more

Appendix F : Error Handling
US $4.99

This appendix provides information on error handling.... more

Appendix G : Standard Controls and Components
US $6.99

This appendix describes the standard controls and components provided by Visual Basic .NET. Some of these are quite complicated... more

Appendix H : WPF Controls

This appendix lists the Windows Presentation Foundation (WPF) controls that are available by default in the current version... more

Appendix I : Visual Basic Power Packs

Power Packs are objects and tools that can make programming easier and more productive. This appendix describes the Visual... more

Appendix J : Form Objects
US $4.99

This appendix describes the most useful properties, methods, and events provided by the Windows... more

Appendix K : Classes and Structures

This appendix provides information about class and structure declarations.... more

Appendix L : Generics

The syntax for declaring a generic is as follows:... more

Appendix M : Graphics
US $4.99

This appendix provides information about graphics classes.... more

Appendix N : Useful Exception Classes

When your program throws an exception, it’s easy enough to use a... more

Appendix O : Date and Time Format Specifiers

A program uses date and time format specifiers to determine how dates and times are represented as strings. For example,... more

Appendix P : Other Format Specifiers
US $4.99

A program uses format specifiers to determine how objects are represented as strings. For example, by using different format... more

Appendix Q : The Application Class