![]() VB .NET in 60 Minutes a Day
ISBN: 978-0-471-42548-9
Paperback
720 pages
August 2003
This title is out-of-print and not currently available for purchase from this site.
Other Available Formats: Adobe E-Book
|
| Download | Size | |
|---|---|---|
| Chapter 1 Lab Demonstrates simple TextBox Interactivity, casting and concatenation. |
22.93 KB | HTTP | FTP |
| Chapter 1 VB Language KickStart Various useful snippets to kick start your use of VB.Net. |
26.46 KB | HTTP | FTP |
| Chapter 2 ComboBox Demonstrates various features common to all list-based controls. |
47.20 KB | HTTP | FTP |
| Chapter 2 Dynamic Controls Dynamically add and remove controls at run time. |
18.89 KB | HTTP | FTP |
| Chapter 2 Event Handlers Working with event handlers to control multiple events with a single method |
29.29 KB | HTTP | FTP |
| Chapter 3 ArrayLists Demonstrates the use of the ArrayList object as well as Add, Remove, RemoveAt, and iteration through ArrayLists using a For Each loop. |
20.36 KB | HTTP | FTP |
| Chapter 3 Strings Various string operations are shown including Jojn, Equals, Replace, Insert, IndexOfAny, EndsWith, Length and the Like operator. |
31.29 KB | HTTP | FTP |
| Chapter 3 Control Flow The various control structures are introduced including If, Select Case, For Loop, for Each Loop, With, Do Until, Do While, While and Dynamic Arrays. |
35.94 KB | HTTP | FTP |
| Chapter 3 Lab3 Demonstrates the interactive use of controls structures while using the System.IO namespace to display files and directories at a given location on the hard drive. |
39.56 KB | HTTP | FTP |
| Chapter 3 Arrays Array syntax is introduced, including the use of initializer lists and multidimensional arrays. |
20.03 KB | HTTP | FTP |
| Chapter 4 Custom Exception Handler Creates a custom exception by deriving from and extending a base exception class. |
12.26 KB | HTTP | FTP |
| Chapter 4 Debugging Source for various debugging examples used in this chapter. |
20.14 KB | HTTP | FTP |
| Chapter 4 Exceptions Source for various SEH examples used in this chapter. |
24.93 KB | HTTP | FTP |
| Chapter 4 Exceptions Lab Solution for Lab 4-1. |
24.50 KB | HTTP | FTP |
| Chapter 4 Debugging Lab Solution for Lab 4-2. |
45.95 KB | HTTP | FTP |
| Chapter 5 GDI Graphics Many graphics related objects and methods are demonstrated, including the Paint event, DrawPolygon, Color, FillPie, DrawPie, Brush, Pen, DrawString, FontFamily, Image, Rectangle, DrawImage, DrawRectangle, FillRectangle, Size, Point. |
429.40 KB | HTTP | FTP |
| Chapter 5 Form Interaction This simple example instantiates one Form from another and calls the click event on that second form. |
22.80 KB | HTTP | FTP |
| Chapter 5 Hit Test The first of two forms in this application demonstrates a hit test for items in a listbox. as the mouse is moved over items in the listbox, the underlying code will detect if a rectangle has been loaded into the listbox and actually draw it to the form. The second form builds a form in the shape of a trapezoid. |
30.52 KB | HTTP | FTP |
| Chapter 5 List View Controls The first form just demonstrates the syntax for adding items and columns to a ListView control. The second form implements a ListView control to build an Image viewer. |
31.31 KB | HTTP | FTP |
| Chapter 5 MDI Lab - Image Viewer Solution to the Image viewer lab. |
33.24 KB | HTTP | FTP |
| Chapter 5 TreeView Controls Demonstrates different implementations of the TreeView control for exploring structures such as the file system |
68.38 KB | HTTP | FTP |
| Chapter 5 ToolBox Controls Source application for the ToolBox example in this chapter. |
40.38 KB | HTTP | FTP |
| Chapter 6 Classes101 A great many OOP features are introduced including Access Modifiers, Delegates, Events, Enumerations, Properties, Overloaded Methods, Overloaded Constructors, Readonly and WriteOnly Members and Shared Members. |
34.22 KB | HTTP | FTP |
| Chapter 6 Delegates Lab The solution for the events/delegates lab. |
13.78 KB | HTTP | FTP |
| Chapter 7 Core Card Library Files A rather large collections of classes and test application that implements various improvements over the Card, Cards, Deck and other objects in the Card Library. |
69.93 KB | HTTP | FTP |
| Chapter 7 Card Library Final Lab The final lab solution for the Card class library enhancements. |
71.78 KB | HTTP | FTP |
| Chapter 8 Inheritance 1 Simple inheritance example demonstrates virtual overrides and the MustInherit keyword. |
34.20 KB | HTTP | FTP |
| Chapter 8 Inheritance 2 This collection of classes demonstrate the Inherits, Overrides, Shadows, MyBase, MustInherit, MustOverride, Overridable and NotOverridable keywords. |
51.75 KB | HTTP | FTP |
| Chapter 8 Lab 8 - Polymorphism through virtual methods The solution for the polymorphism lab. A library of shapes inherit virtual methods from a common base class to demonstrate the use of polymorphism. |
38.02 KB | HTTP | FTP |
| Chapter 9 Simple Interfaces This polymorhism example shows the shapes classes redefined to implement an IShape interface instead of a Shape class. |
36.17 KB | HTTP | FTP |
| Chapter 9 CardLibrary Improvements The source code for the great number of improvements over the Card library to include the implementation of ICloneable, IComparable, IComparer, ICollection, IList, IEnumerable and the CollectionBase class. |
159.58 KB | HTTP | FTP |
| Chapter 10 Data Library This first data example uses a centralized library for a data source. |
52.59 KB | HTTP | FTP |
| Chapter 10 Record Navigation Navigation examples provided for both DataTable manipulation and SqlDataReader objects. |
35.15 KB | HTTP | FTP |
| Chapter 10 Lab 10-1 This library and test client demonstrate the use of DataSet, Dataview, SqlCommandBuilder, SqlDataAdapter, SqlConnection, DataRow, Updates (Update,HasChanges,Getchanges), Datatables, reading and writing XML, Merging Datasets and Exporting Schemas. |
81.78 KB | HTTP | FTP |
| Chapter 10 Lab 10-2 This library and test client provide a mechanism for capturing and passing parameters to stored procedures via a library. |
89.17 KB | HTTP | FTP |
| Chapter 11 Misc Code Snippets Source code and files pertaining to many examples used in the chapter. |
32.89 KB | HTTP | FTP |
| Chapter 11 Counters Demonstrates how embedded counters are used. |
44.71 KB | HTTP | FTP |
| Chapter 11 Performance Monitor A custom interface similar to Performance Monitor that uses embedded performance counters. |
38.79 KB | HTTP | FTP |
| Chapter 12 Introducing Threads Introduces threads. |
20.33 KB | HTTP | FTP |
| Chapter 12 ThreadStatic Demonstrates controlling access to shared data using the ThreadStatic attribute. |
19.33 KB | HTTP | FTP |
| Chapter 12 Affinity Explains how controls created on one thread are inaccessible by another. |
20.23 KB | HTTP | FTP |
| Chapter 12 ThreadPool Demonstrates how QueueUserWorkItem and the Thread Pool work. |
19.93 KB | HTTP | FTP |
| Chapter 12 Synchronizing collections Synchronizing collections (such as a Stack) using the synchronized method. |
18.09 KB | HTTP | FTP |
| Chapter 12 Synchronizating an entire class Demonstrates the use of System.Runtime.Remoting.Contexts.Synchronization attribute for synchronizing access to an entire class. |
17.56 KB | HTTP | FTP |
| Chapter 12 Synchronizing access to a single method Uses the MethodImpl attribute to synchronize access to a single method. |
16.71 KB | HTTP | FTP |
| Chapter 12 Interlocked class Implements the Interlocked class to control thread access to a critical section. |
17.51 KB | HTTP | FTP |
| Chapter 12 Mutex Implements a Mutex to control access to a critical section. |
7.39 KB | HTTP | FTP |
| Chapter 12 SyncLock The Lab solution demonstrates the use of SyncLock to control access to critical sections. |
20.55 KB | HTTP | FTP |
| Chapter 13 Lab 13-1 A quick introduction to building ASP.NET pages. This simple web application calculates the volume of a sphere based on a radius the user enters. |
15.45 KB | HTTP | FTP |
| Chapter 13 Lab 13-2 This ASP.NET web application allows you to enter defect information about a software application. It demonstrates the construction of an ASP.NET application connected to a database. |
24.88 KB | HTTP | FTP |
| Chapter 14 Lab 14-1 This lab consists of a secured SQL Server that accepts only authenticated users, as well as a data access web application that talks to it as the authenticated user. |
21.54 KB | HTTP | FTP |
| Chapter 14 Lab 14-1 Class This supporting class for the lab 14-1 handles access to the database, and is built as a separate project. |
13.53 KB | HTTP | FTP |
| Chapter 14 Lab 14-2 This lab loads external XML data from a file, loads a schema into our program, and then validates it against the schema. Once loaded and validated, we populate a DataSet with it and data bind it to a data grid on a web page. |
23.84 KB | HTTP | FTP |
| Chapter 14 Lab 14-2 Generator This utility program generates the XML data and XSD schema files that feed the client application in lab 14-2. |
29.03 KB | HTTP | FTP |
| Chapter 15 Lab 15-1 This lab introduces web services, and is a sample library containing a couple of simple math routines. |
16.30 KB | HTTP | FTP |
| Chapter 15 IMath This web service acts as a web-based interface to our math library in Lab 15-1. |
16.37 KB | HTTP | FTP |
| Chapter 15 Lab 15-2 A web application that gets information about computer parts inventory. Lab 15-2 is a multi-part lab, and consists of a data access class library, a client program, and a web service-based interface to the class library. Lab 15-2 is the client portion. |
36.25 KB | HTTP | FTP |
| Chapter 15 Lab 15-2 Data Access | 28.78 KB | HTTP | FTP |
| Chapter 15 Lab 15-2 Web Service The web service in this lab acts as a web-based interface to the data access code. It will be used by the client portion of the lab. |
18.66 KB | HTTP | FTP |
| Chapter 16 Export Library The simple library used in the export to COM discussion. |
31.64 KB | HTTP | FTP |
| Chapter 16 PInvoke Uses both DLLImport and the Declare statement to call Win32 API functions. |
19.17 KB | HTTP | FTP |
| Chapter 16 VB6 Project The VB6 Project used for Interoperability discussion. |
8.56 KB | HTTP | FTP |
| Chapter 16 VB6 Control The VB6 Control used for interoperability discussion. |
13.74 KB | HTTP | FTP |
| Chapter 17 Lab 17-1 A simple mobile web application that gets our feet wet by providing a random quotation from a user-selected category. |
15.25 KB | HTTP | FTP |
| Chapter 17 Lab 17-2 Lab 17-2 is a more advanced mobile web application that serves up software development news to mobile users. It demonstrates some of the more advanced controls and concepts such as validator controls and data binding. This part is web-based the client portion. |
26.74 KB | HTTP | FTP |
| Chapter 17 Lab 17-2 Data Access This part of the lab is a standard class library that contains data access code. |
22.03 KB | HTTP | FTP |
| Chapter 18 ClassWriter Programatically reads and writes to resource editor. |
132.81 KB | HTTP | FTP |
| Chapter 18 Localization Tools Several useful tools for dealing with localization. |
75.05 KB | HTTP | FTP |
| Chapter 18 Lab18-1 Lab18-1 files. |
70.82 KB | HTTP | FTP |
| Chapter 18 Lab18-2 Lab18-2 files. |
34.51 KB | HTTP | FTP |
| Chapter 19 Migration 1 Source and Solution for first migration. |
13.33 KB | HTTP | FTP |
| Chapter 19 Migration 2 Source and solution for second migration. |
621.54 KB | HTTP | FTP |
| Chapter 19 Migration 3 Source and solution for third migration. |
40.08 KB | HTTP | FTP |
| Chapter 19 Migration Lab Solution to final migration lab. |
501.92 KB | HTTP | FTP |
| Chapter 20 Lab 20-1 | 14.65 KB | HTTP | FTP |
| Chapter 20 Lab 20-2 This lab shows a full-blown application installation, complete with custom graphics, modified user interface dialogs, and the execution of our own custom external code from the installation program. |
3.41 MB | HTTP | FTP |
| Chapter 20 Lab 20-2 Client This is the actual client program that we install as part of this lab. |
27.72 KB | HTTP | FTP |
| Chapter 20 RegisterWeb This is a class library we build to allow the user to register their newly installed application over the web. It calls a dummy web page, launching it from inside our installation program. |
24.36 KB | HTTP | FTP |

