Main Form

Jenga.NET generates database-related components, but the user must design the application's entry form (MainForm).

This Provides the user flexibility and full control of the application.

Sample Main Form

Go to Visual studio and add a form to the project called FrmMain. The make it the entry form from the program.cs file.

Program.cs

using System; 
using System.Windows.Forms;

namespace HelloWorld
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new FrmMain());
        }
    }
}

Last updated