Chapter 5. Visual Basic Building Blocks

function OpenWin(url, w, h) { if(!w) w = 400; if(!h) h = 300; window.open(url, "_new", "width=" + w + ",height=" + h + ",menubar=no,toobar=no,scrollbars=yes", true); } function Print() { window.focus(); if(window.print) { window.print(); window.setTimeout('window.close();',5000); } }
Team-Fly    

Special Edition Using Microsoft® Visual Basic® .NET
By Brian Siler, Jeff Spotts
Table of Contents
Part I:  Getting Started with Visual Basic .NET


In this chapter

Terminology You Must Know

Understanding Namespaces

Error Handling

Introduction to Debugging

From Here . . .

If you have read the first few chapters of the book, you should be familiar with the steps involved in creating a simple application in the Visual Studio environment. However, to become a competent VB programmer, you need to understand some terms and ideas that are central to the VB language. Designing the visual parts of your program is a fairly intuitive process. However, there are some subtleties to the terminology and syntax that every VB programmer needs to know. By understanding these foundation concepts, you will be able to more quickly master advanced topics.


    Team-Fly    
    Top
     



    Special Edition Using Visual Basic. NET
    Special Edition Using Visual Basic.NET
    ISBN: 078972572X
    EAN: 2147483647
    Year: 2001
    Pages: 198

    flylib.com © 2008-2017.
    If you may any questions please contact us: flylib@qtcs.net