丰州同步程序(已移交给金睿)
ch
2021-09-14 8b2ca4dfd8a581378ce2759ddd7c3420cc42d151
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Windows.Forms;
 
namespace EDI
{
    static class Program
    {
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        [STAThread]
        static void Main()
        {
 
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Pub_Class.ClsPub.AppPath = System.Environment.CurrentDirectory;
            DBUtility.ClsPub.AppPath = System.Environment.CurrentDirectory;
            Application.Run(new FrmServerFZ());
        }
    }
}