Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/WinForms/CS/XpoTutorials/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/WinForms/CS/XpoTutorials/Program.cs

using System;
using System.Collections.Generic;
using System.Windows.Forms;
using DevExpress.Xpo.DB;
using DevExpress.Utils;
using System.Reflection;

namespace DevExpress.Xpo.Demos {
    static class Program {
        [STAThread]
        static void Main() {
            DevExpress.UserSkins.BonusSkins.Register();

            if(OSVersionHelper.Is64BitOS())
                XpoDefault.DataLayer = XpoDefault.GetDataLayer(InMemoryDataStore.GetConnectionString("XpoTutorials.xml"), AutoCreateOption.DatabaseAndSchema);

            Application.Run(new frmMain());
        }
    }
}