1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.ServiceProcess;
using System.Text;
using System.Windows.Forms;
namespace ServiceEssai
{
public partial class Spylock : ServiceBase
{
public Spylock()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
MessageBox.Show("Ca marche");
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
protected override void OnStop()
{
// TODO: Add code here to perform any tear-down necessary to stop your service.
}
} |