Wrox Home  
Search

Topic: Visual Basic

Visual Basic 2008 Programmer's Reference (0470182628) cover image
Visual Basic 2008 Programmer's Reference
Rod Stephens
ISBN: 978-0-470-18262-8
Paperback
1248 pages
February 2008

Back to description


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

The chapters in the first part of this book describe the Visual Studio integrated development environment... more

Chapter 2: Menus, Toolbars, and Windows
28 pages
US $4.99

The Visual Studio IDE is incredibly powerful and provides hundreds of tools for building and modifying projects. The price... more

Chapter 3: Customization
6 pages
US $4.99

The Visual Studio IDE is packed with thousands of tools that are available through toolbar and menu commands. There are so... more

Chapter 4: Windows Form Designer
12 pages
US $4.99

The Windows Form Designer allows you to design forms for typical Windows applications. It lets you add, size, and move controls... more

Chapter 5: WPF Designer
10 pages
US $4.99

The WPF (Windows Presentation Foundation) Designer allows you to build WPF windows interactively much as the Windows Form... more

Chapter 6: Visual Basic Code Editor
16 pages
US $4.99

The Visual Studio IDE includes editors for many different kinds of documents, including several different kinds of code.... more

Chapter 7: Debugging
14 pages
US $4.99

The Visual Basic Code Editor described in Chapter 6, “Visual Basic Code Editor,” provides tools that make writing Visual... more

Chapter 8: Selecting Windows Forms Controls
18 pages
US $4.99

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

Chapter 9: Using Windows Forms Controls
28 pages
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 10: Windows Forms
26 pages
US $4.99

The Visual Basic Windows... more

Chapter 11: Selecting WPF Controls
12 pages
US $4.99

One of the largest new additions in Visual Basic 2008 is Windows Presentation Foundation (WPF). WPF provides a whole new... more

Chapter 12: Using WPF Controls
36 pages
US $4.99

The code behind WPF controls is the same as the code behind Windows Forms controls. That means that everything the earlier... more

Chapter 13: WPF Windows
14 pages
US $4.99

In Windows Forms applications,... more

Chapter 14: Program and Module Structure
24 pages
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 15: Data Types, Variables, and Constants
46 pages
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 16: Operators
20 pages
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 17: Subroutines and Functions
26 pages
US $4.99

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

Chapter 18: Program Control Statements
24 pages
US $4.99

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

Chapter 19: Error Handling
24 pages
US $4.99

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

Chapter 20: Database Controls and Objects
56 pages
US $4.99

The Windows Forms controls described in Chapter 8, “Selecting Windows Forms Controls,” allow the application and the user... more

Chapter 21: LINQ
36 pages
US $4.99

LINQ (Language Integrated Query) is a new data selection mechanism designed to give programs the ability to select data in... more

Chapter 22: Custom Controls
26 pages
US $4.99

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

Chapter 23: Drag and Drop, and the Clipboard
18 pages
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 24: UAC Security
8 pages
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 25: OOP Concepts
16 pages
US $4.99

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

Chapter 26: Classes and Structures
42 pages
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 27: Namespaces
14 pages
US $4.99

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

Chapter 28: Collection Classes
28 pages
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 29: Generics
12 pages
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 30: Drawing Basics
36 pages
US $4.99

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

Chapter 31: Brushes, Pens, and Paths
30 pages
US $4.99

After... more

Chapter 32: Text
18 pages
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 33: Image Processing
16 pages
US $4.99
Chapter 34: Printing
20 pages
US $4.99

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

Chapter 35: Reporting
22 pages
US $4.99

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

Chapter 36: Configuration and Resources
32 pages
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 37: Streams
12 pages
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 38: File-System Objects
24 pages
US $4.99

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

Chapter 39: Windows Communication Foundation
12 pages
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 40: Useful Namespaces
24 pages
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
12 pages
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
8 pages
US $4.99

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

Appendix C: Operators
8 pages
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
4 pages

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

Appendix E: Control Statements
6 pages
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
2 pages

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

Appendix G: Windows Forms Controls and Components
84 pages
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
8 pages
US $4.99

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

Appendix I: Visual Basic Power Packs
4 pages

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

Appendix J: Form Objects
16 pages
US $4.99

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

Appendix K: Classes and Structures
4 pages

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

Appendix L: LINQ
10 pages
US $4.99

This appendix provides syntax summaries for the most useful LINQ methods. For more detailed information, see Chapter 21,... more

Appendix M: Generics
4 pages

This appendix summarizes generic classes, extensions, and methods. Example program GenericExamples, which is available for... more

Appendix N: Graphics
14 pages
US $4.99

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

Appendix O: Useful Exception Classes
4 pages

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

Appendix P: Date and Time Format Specifiers
4 pages

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

Appendix Q: Other Format Specifiers
6 pages
US $4.99

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

Appendix R: The Application Class
4 pages
Appendix S: The My Namespace
18 pages
US $4.99

The My namespace provides shortcuts to make performing common tasks easier. The following sections describe the major items... more

Appendix T: Streams
8 pages
US $4.99

Visual Studio provides several classes that treat data as a stream. These classes are not difficult to use, but they are... more

Appendix U: File-System Classes
18 pages
US $4.99

A Visual Basic application can take three basic approaches to file system manipulation: Visual Basic methods, System.IO Framework... more

Appendix V: Index of Examples
20 pages
US $4.99

This book includes 435 example programs that are available for download from the book’s web site. This appendix briefly describes... more

Add to Cart
Printer-Ready Version   Share This
DRM-free e-books from Wrox

Visual Basic Related Resources

Blogs

Articles