Exemplo n.º 1
0
		void ServiceOutput(object sender, ServiceOutputEventArgs e)
		{
			Console.WriteLine(e.Message);
		}
Exemplo n.º 2
0
 static void ServiceOutputHandler(Object sender, FBDS.ServiceOutputEventArgs eventArgs)
 {
 }
Exemplo n.º 3
0
 static void ServiceOutput(object sender, ServiceOutputEventArgs e)
 {
     result = e.Message;
 }
Exemplo n.º 4
0
 private void ServiceOutput(object sender, ServiceOutputEventArgs e)
 {
     if (Properties.Settings.Default.DetailedLog) PutLog(e.Message);
     lCurrentWork.Text = e.Message; lCurrentWork.Update();
     pbWork.Value = (pbWork.Value + 1) % pbWork.Maximum;
     pbWork.Update();
     //Application.DoEvents();
 }
Exemplo n.º 5
0
 private void ServiceOutput(object sender, ServiceOutputEventArgs e)
 {
     MessageBox.Show(e.Message);
     Application.DoEvents();
 }