-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProjectInstaller.Designer.cs
More file actions
61 lines (55 loc) · 2.23 KB
/
ProjectInstaller.Designer.cs
File metadata and controls
61 lines (55 loc) · 2.23 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
namespace LabelSpooler
{
partial class ProjectInstaller
{
/// <summary>
/// Variabile di progettazione necessaria.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Pulire le risorse in uso.
/// </summary>
/// <param name="disposing">ha valore true se le risorse gestite devono essere eliminate, false in caso contrario.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Codice generato da Progettazione componenti
/// <summary>
/// Metodo necessario per il supporto della finestra di progettazione. Non modificare
/// il contenuto del metodo con l'editor di codice.
/// </summary>
private void InitializeComponent()
{
this.ProcInstall = new System.ServiceProcess.ServiceProcessInstaller();
this.ServInstall = new System.ServiceProcess.ServiceInstaller();
//
// ProcInstall
//
this.ProcInstall.Account = System.ServiceProcess.ServiceAccount.LocalSystem;
this.ProcInstall.Password = null;
this.ProcInstall.Username = null;
//
// ServInstall
//
this.ServInstall.Description = "Database Spool Print Service for Label Printers";
this.ServInstall.DisplayName = "LabelSpooler";
this.ServInstall.ServiceName = "LabelSpooler";
this.ServInstall.StartType = System.ServiceProcess.ServiceStartMode.Automatic;
this.ServInstall.AfterInstall += new System.Configuration.Install.InstallEventHandler(this.serviceInstaller1_AfterInstall);
//
// ProjectInstaller
//
this.Installers.AddRange(new System.Configuration.Install.Installer[] {
this.ProcInstall,
this.ServInstall});
}
#endregion
private System.ServiceProcess.ServiceProcessInstaller ProcInstall;
private System.ServiceProcess.ServiceInstaller ServInstall;
}
}