CNAS取数仪器端升级
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 4 месеца
12345678910111213141516171819202122232425262728293031
  1. using CnasSynchronusClient;
  2. using CnasSynchrousModel;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Windows.Forms;
  7. namespace CNAS_BalanceClient
  8. {
  9. static class Program
  10. {
  11. /// <summary>
  12. /// 应用程序的主入口点。
  13. /// </summary>
  14. [STAThread]
  15. static void Main()
  16. {
  17. Application.EnableVisualStyles();
  18. Application.SetCompatibleTextRenderingDefault(false);
  19. SystemFormatConfig systemFormat = FileOperation.GetSystemFormatConfigData();
  20. GlobalCommonOperation.strStartGeneralVersion = systemFormat.StartGeneralVersion;
  21. GlobalCommonOperation.strStartWebApi = systemFormat.StartWebApi;
  22. GlobalCommonOperation.strWebApiUrl = systemFormat.WebApiUrl;
  23. GlobalCommonOperation.strTargetDbType = systemFormat.TargetDBType;
  24. if (new frmLoginServer().ShowDialog()==DialogResult.OK)
  25. Application.Run(new frmBalanceMain());
  26. }
  27. }
  28. }