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 V: Visual Basic and Databases |
In this chapter Data and Your Application Executing Database Commands Understanding Datasets Building a Reusable Data Access Layer ActiveX Data Objects.NET is the cornerstone data access technology behind Visual Studio .NET and the .NET framework. In this chapter, we introduce fundamental ADO.NET concepts as well as describe how to build a data access layer that can be used in your multi-tier Visual Basic applications. |
| Team-Fly | |
|
| |
|