reklama - zainteresowany?

Visual Basic 2005 Jumpstart - Helion

Visual Basic 2005 Jumpstart
ebook
Autor: Wei-Meng Lee
ISBN: 978-05-965-5334-0
stron: 216, Format: ebook
Data wydania: 2005-09-22
Księgarnia: Helion

Cena książki: 42,42 zł (poprzednio: 49,33 zł)
Oszczędzasz: 14% (-6,91 zł)

Dodaj do koszyka Visual Basic 2005 Jumpstart

Okay, all you VB6 developers--time's up. As of March 2005, Microsoft no longer supports this version of Visual Basic. And you can't blame them. Three years ago, they introduced the .NET Framework--an elegant, powerful platform--along with the new component-based VB.NET language. But roughly five million of you decided to stick with VB6, mostly to maintain legacy Windows and COM projects.

Now, with the upcoming release of VB 2005, Microsoft has several attractive reasons to upgrade that you'll find hard to resist, including the return of some VB6 features. And we have the perfect book to help you make the conversion: Visual Basic 2005 Jumpstart. Now, you can test-drive the beta version of VB 2005 with three hands-on projects that enable you to learn the syntax of this new language quickly.

VB 2005 not only lets you convert the bulk of your existing VB6 code, but offers several familiar features, such as compile-and-run debugging, new MyClasses that simplify use of .NET libraries and frameworks, lots of IDE support for Windows, web and mobile GUI development, and data access controls that closely resemble what you use now. The real plus is that you'll be using these features with the .NET platform, which is more secure, less complex than COM, and offers OneClick deployment.

Visual Basic 2005 Jumpstart lets you get the feel of this platform for building smart/rich Windows Forms clients, ASP.NET web applications, and web services. Author Wei-Meng Lee, a Microsoft .NET MVP, veteran O'Reilly author and frequent contributor to the O'Reilly Network, has put together three useful test-drive projects, complete with code samples, that let you develop:

  • A personal library Windows application
  • A Web-based shopping cart application
  • A stock enquiry Web Service
Our jumpstart guide is the quick, painless way to migrate from VB6 to VB 2005, and the perfect training manual for moving your organization to the more robust, dynamic and secure world of .NET.

Dodaj do koszyka Visual Basic 2005 Jumpstart

 

Osoby które kupowały "Visual Basic 2005 Jumpstart", wybierały także:

  • Windows Media Center. Domowe centrum rozrywki
  • Ruby on Rails. Ćwiczenia
  • DevOps w praktyce. Kurs video. Jenkins, Ansible, Terraform i Docker
  • Przywództwo w Å›wiecie VUCA. Jak być skutecznym liderem w niepewnym Å›rodowisku
  • Scrum. O zwinnym zarzÄ…dzaniu projektami. Wydanie II rozszerzone

Dodaj do koszyka Visual Basic 2005 Jumpstart

Spis treści

Visual Basic 2005 Jumpstart eBook -- spis treści

  • Visual Basic 2005 Jumpstart
    • SPECIAL OFFER: Upgrade this ebook with OReilly
    • A Note Regarding Supplemental Files
    • Copyright
    • About the Author
    • Foreword
    • Preface
      • Who This Book Is For
        • How This Book Is Organized
      • What You Need to Use This Book
      • Conventions Used in This Book
      • Using Code Examples
      • Safari Enabled
      • Id Like to Hear from You
      • Comments and Questions
      • Acknowledgments
    • 1. Introducing Visual Basic 2005
      • 1.1. Create the Application and Its Main Window
      • 1.2. Add a Menu and Toolbar
      • 1.3. Connect to a Database and Browse Records
      • 1.4. Create an Exit Dialog Box
      • 1.5. Handle Exit and Close Events
      • 1.6. Run and Debug the Application
      • 1.7. Inspect an Object at Runtime
      • 1.8. Add an About Box
      • 1.9. Configure the Application
      • 1.10. Summary
    • 2. Programming with Visual Basic
      • 2.1. Data Types
      • 2.2. Variables
      • 2.3. Constants
        • 2.3.1. Literals
        • 2.3.2. Enumerations
      • 2.4. Strings
      • 2.5. Arrays
      • 2.6. Type Conversion
      • 2.7. Operators
      • 2.8. Statements
        • 2.8.1. Decision-Making (Branching) Statements
          • 2.8.1.1. If-Then-Else
          • 2.8.1.2. SelectCase
        • 2.8.2. Looping (Iteration) Statements
      • 2.9. Functions and Subroutines
        • 2.9.1. Function
        • 2.9.2. Subroutine
        • 2.9.3. Passing Arguments
          • 2.9.3.1. Passing by value
          • 2.9.3.2. Passing by reference
          • 2.9.3.3. Optional parameters
      • 2.10. Error Handling
        • 2.10.1. Try-Catch-Finally
        • 2.10.2. Throwing Exceptions
      • 2.11. My Namespace
      • 2.12. Summary
    • 3. Putting Object-Oriented Programming to Work
      • 3.1. Working with Classes and Objects
        • 3.1.1. Using the .NET Classes
        • 3.1.2. Creating Objects
        • 3.1.3. Comparing Objects
      • 3.2. Reusing and Customizing Classes
        • 3.2.1. Using Inheritance
        • 3.2.2. Customizing a Method
        • 3.2.3. Adding Alternate Versions of a Method to a Class
        • 3.2.4. Adding a New Method
        • 3.2.5. Customizing Initialization
        • 3.2.6. Adding Properties
        • 3.2.7. Weakly Typed Versus Strongly Typed Variables
        • 3.2.8. Using a Generic Class
        • 3.2.9. Splitting Up the Physical Implementation of a Class
      • 3.3. Designing Your Own Classes
        • 3.3.1. Defining a Class
        • 3.3.2. Controlling Access to Class Members
        • 3.3.3. Aggregating Data Types Using a Structure
      • 3.4. Controlling How Classes Are Implemented
        • 3.4.1. Allowing or Preventing Overridable Methods
        • 3.4.2. Specifying Implementation Details with Abstract Classes and Methods
        • 3.4.3. Creating Contracts with Implementers Using Interfaces
        • 3.4.4. Controlling the Destruction of Objects
        • 3.4.5. Tagging Objects with Attributes
      • 3.5. Summary
    • 4. Developing a Windows Application
      • 4.1. Creating the Windows Application and Building the Main Window
        • 4.1.1. Creating a Database to Store Books Information
        • 4.1.2. Binding Library Data to the Form
        • 4.1.3. Adding a Web Reference to Amazon.com
        • 4.1.4. Accessing the Amazon.com Web Services
        • 4.1.5. Displaying Book Information and Covers
        • 4.1.6. Saving Book Information
        • 4.1.7. Testing the Application
      • 4.2. Viewing Book Information Offline
        • 4.2.1. Create the Books Catalog Window
        • 4.2.2. Binding Library Data to the Books Catalog Form
        • 4.2.3. Testing the Application
      • 4.3. Deploying the Application
        • 4.3.1. Publishing the Application
      • 4.4. Automatic Updating
        • 4.4.1. Accessing the Web Services Asynchronously
        • 4.4.2. Republishing the Application
      • 4.5. Summary
    • 5. Building Web Applications
      • 5.1. Building the Storefront
        • 5.1.1. Building a Site Template Using a Master Page
        • 5.1.2. Building the Storefront Using a Content Page
      • 5.2. Creating a Shopping Cart
      • 5.3. Members Area
        • 5.3.1. Creating New User Accounts
        • 5.3.2. Creating a Login Page
        • 5.3.3. Restrict Unauthorized Access to Pages
        • 5.3.4. Checking Out from the Store
      • 5.4. Testing the Application
      • 5.5. Summary
    • 6. Moving from VB 6 to VB 2005
      • 6.1. Migrate, Replace, Rewrite, or Reuse?
        • 6.1.1. Making the Right Decision
          • 6.1.1.1. Migrate
          • 6.1.1.2. Reuse
          • 6.1.1.3. Rewrite
          • 6.1.1.4. Replace
      • 6.2. Using COM Objects in VB 2005
      • 6.3. Upgrading VB 6 Applications
        • 6.3.1. Using Code Advisor for VB 6
        • 6.3.2. Using the Upgrade Wizard
      • 6.4. Summary
    • About the Author
    • Colophon
    • SPECIAL OFFER: Upgrade this ebook with OReilly

Dodaj do koszyka Visual Basic 2005 Jumpstart

Code, Publish & WebDesing by CATALIST.com.pl



(c) 2005-2024 CATALIST agencja interaktywna, znaki firmowe należą do wydawnictwa Helion S.A.