Esempio n. 1
0
File: Program.cs Progetto: radtek/QM
 static void Main(string[] args)
 {
     log.Debug("start");
     if (args.Length > 0)
     {
         com.asewh.web.Services s = new com.asewh.web.Services();
         s.HelloWorld();
         log.Debug("exit");
         Environment.Exit(0);
     }
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     Application.Run(new Form1());
 }
Esempio n. 2
0
 private void button1_Click(object sender, EventArgs e)
 {
     com.asewh.web.Services s = new com.asewh.web.Services();
     s.HelloWorld();
 }