Collection Contents Previous Next PDF

UltraLite.NET User's Guide

Tutorial: Build an UltraLite.NET Application

Lesson 1: Create a Visual Studio project


The following procedure creates and configures a new Visual Studio application. You can choose whether to use Visual Basic.NET or C# as your programming language.

To create a Visual Studio project

  1. Create a Visual Studio project .

  2. Add references to your project.

  3. Create a form for your application.

    Add the following visual components to the form.

    Type Name Text
    Button btnInsert Insert
    Button btnUpdate Update
    Button btnDelete Delete
    TextBox txtName
    ListBox lbNames
    Label laName Name

    Your form should look like the following figure.

    The Visual Studio form, showing the Insert, Update, and Delete buttons as well as a text box, list box, and label.
  4. Build and deploy your solution.

    Building and deploying the solution confirms that you have configured your Visual Studio.NET project properly.

    1. From the Build menu, choose Build Solution. Confirm that the project builds successfully.

    2. From the Debug menu, choose Start. This action deploys your application to the device or emulator, and starts it. The application is deployed to \Program Files\VBApp or \Program Files\CSApp depending on your project name.

      The deployment may take some time.

    3. Confirm that the application deploys to the emulator or your target device.

    4. From the Debug menu, choose Stop Debugging to close the application.


Collection Contents Previous Next PDF