VB.NET Samples
--------------------
1 VB.NET Samples Purpose
2 How to Run VB.NET Samples


1 VB.NET Samples Purpose
---------------------------------
    Sample: C:\DBMaker\5.4\Samples\VB.NET\VBNetSample.vb

    Purpose:
        This sample demostrates how to access database with VB.NET(via ADO.NET).

        1. Read ordinary data from database and fill dataset

        2. Manipulate data in dataset

        3. Update database with completed sql command

        4. Used ADO.NET components(Include OleDb Provider and Odbc provider):
           DataSet, DataAdapter, Command, Connection, etc.


2 How to Run VB.NET Samples
---------------------------------
    Steps:
        1. Install .NET Framework v1.1 or later

        2. Compile VBNetSample.vb in command line:
           vbc /t:winexe /r:System.dll /r:System.Data.dll /r:System.Windows.Forms.dll /r:System.Drawing.dll /r:System.Xml.dll VBNetSample.vb

        3. Start database DBSAMPLE5

        4. Double click VBNetSample.exe

    NOTE: You can open Info\Info.sln in VB.NET, build and run it.