Files
DP44/DataPRO/SLICEDBMerge/.svn/pristine/07/076d4b620fd9955cc83aba5f6203e0b1a63bb204.svn-base

22 lines
504 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace SliceDBMerge
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}