12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Windows.Forms;
- namespace OTSIncAReportApp
- {
- static class Program
- {
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- [STAThread]
- static void Main(string[] args)
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- //分别调用无参报告,和带参报告
- if (args.Length == 0)
- {
- frmReportApp frmReportApp = new frmReportApp();
- Application.Run(frmReportApp);
- }
- else
- {
- frmReportApp frmReportApp = new frmReportApp(args);
- Application.Run(frmReportApp);
- }
- }
- }
- }
|