1 |
joko |
1.1 |
VERSION 1.0 CLASS |
2 |
|
|
BEGIN |
3 |
|
|
MultiUse = -1 'True |
4 |
|
|
Persistable = 0 'NotPersistable |
5 |
|
|
DataBindingBehavior = 0 'vbNone |
6 |
|
|
DataSourceBehavior = 0 'vbNone |
7 |
|
|
MTSTransactionMode = 0 'NotAnMTSObject |
8 |
|
|
END |
9 |
|
|
Attribute VB_Name = "ServiceControl" |
10 |
|
|
Attribute VB_GlobalNameSpace = False |
11 |
|
|
Attribute VB_Creatable = True |
12 |
|
|
Attribute VB_PredeclaredId = False |
13 |
|
|
Attribute VB_Exposed = False |
14 |
|
|
Option Explicit |
15 |
|
|
|
16 |
|
|
' a reference to a "NTService"-UserControl-Object |
17 |
|
|
Dim refNTServiceCtrl As NTService.NTService |
18 |
|
|
' a reference to a Timer-Object |
19 |
|
|
Dim refTimer As Timer |
20 |
|
|
|
21 |
|
|
Dim currentInitStatus As String |
22 |
|
|
|
23 |
|
|
Friend Sub setRefs(ByRef rNTService As NTService.NTService, ByRef rTimer As Timer) |
24 |
|
|
Set refNTServiceCtrl = rNTService |
25 |
|
|
Set refTimer = rTimer |
26 |
|
|
End Sub |
27 |
|
|
|
28 |
|
|
Friend Sub doStart() |
29 |
|
|
|
30 |
|
|
'Call DebugBreak |
31 |
|
|
|
32 |
|
|
On Error GoTo Err_Load |
33 |
|
|
|
34 |
|
|
currentInitStatus = "Loading" |
35 |
|
|
refNTServiceCtrl.Debug = True |
36 |
|
|
|
37 |
|
|
' initialize timer |
38 |
|
|
currentInitStatus = "Loading configuration" |
39 |
|
|
Dim parmInterval As String |
40 |
|
|
parmInterval = refNTServiceCtrl.GetSetting("Parameters", "TimerInterval", "2000") |
41 |
|
|
refTimer.Interval = CInt(parmInterval) |
42 |
|
|
|
43 |
|
|
' enable Pause/Continue. Must be set before StartService is called or in design mode |
44 |
|
|
currentInitStatus = "Enabling control mode" |
45 |
|
|
refNTServiceCtrl.ControlsAccepted = svcCtrlPauseContinue |
46 |
|
|
|
47 |
|
|
' connect service to Windows NT services controller |
48 |
|
|
currentInitStatus = "Starting" |
49 |
|
|
refNTServiceCtrl.StartService |
50 |
|
|
|
51 |
|
|
Exit Sub |
52 |
|
|
|
53 |
|
|
Err_Load: |
54 |
|
|
If refNTServiceCtrl.Interactive Then |
55 |
|
|
MsgBox "[" & Err.Number & "] " & Err.Description |
56 |
|
|
End |
57 |
|
|
Else |
58 |
|
|
Call refNTServiceCtrl.LogEvent(svcMessageError, svcEventError, "[" & Err.Number & "] " & Err.Description) |
59 |
|
|
End If |
60 |
|
|
|
61 |
|
|
|
62 |
|
|
End Sub |
63 |
|
|
|
64 |
|
|
Friend Function doStop() |
65 |
|
|
refNTServiceCtrl.StopService |
66 |
|
|
End Function |
67 |
|
|
|
68 |
|
|
Friend Sub doDebugMode() |
69 |
|
|
refNTServiceCtrl.Debug = True |
70 |
|
|
End Sub |
71 |
|
|
|
72 |
|
|
Friend Sub doInstall() |
73 |
|
|
Dim logMsg As String |
74 |
|
|
Dim evType As Variant |
75 |
|
|
|
76 |
|
|
'refNTServiceCtrl.Debug = True |
77 |
|
|
|
78 |
|
|
' enable interaction with desktop |
79 |
|
|
'refNTServiceCtrl.Interactive = True |
80 |
|
|
refNTServiceCtrl.Interactive = False |
81 |
|
|
|
82 |
|
|
' install service |
83 |
|
|
If refNTServiceCtrl.Install Then |
84 |
|
|
Call refNTServiceCtrl.SaveSetting("Parameters", "TimerInterval", "2000") |
85 |
|
|
logMsg = refNTServiceCtrl.DisplayName & " installed successfully" |
86 |
|
|
evType = SvcEventType.svcEventSuccess |
87 |
|
|
Else |
88 |
|
|
logMsg = refNTServiceCtrl.DisplayName & " failed to install" |
89 |
|
|
evType = SvcEventType.svcEventError |
90 |
|
|
End If |
91 |
|
|
|
92 |
|
|
' log/display success |
93 |
|
|
Call refNTServiceCtrl.LogEvent(evType, 0, logMsg) |
94 |
|
|
If refNTServiceCtrl.Interactive Then |
95 |
|
|
MsgBox logMsg |
96 |
|
|
End If |
97 |
|
|
|
98 |
|
|
End |
99 |
|
|
End Sub |
100 |
|
|
|
101 |
|
|
Friend Sub doUninstall() |
102 |
|
|
|
103 |
|
|
Dim logMsg As String |
104 |
|
|
Dim evType As Variant |
105 |
|
|
|
106 |
|
|
If refNTServiceCtrl.Uninstall Then |
107 |
|
|
logMsg = refNTServiceCtrl.DisplayName & " uninstalled successfully" |
108 |
|
|
evType = SvcEventType.svcEventSuccess |
109 |
|
|
Else |
110 |
|
|
logMsg = refNTServiceCtrl.DisplayName & " failed to uninstall" |
111 |
|
|
evType = SvcEventType.svcEventError |
112 |
|
|
End If |
113 |
|
|
|
114 |
|
|
' log/display success |
115 |
|
|
Call refNTServiceCtrl.LogEvent(evType, 0, logMsg) |
116 |
|
|
If refNTServiceCtrl.Interactive Then |
117 |
|
|
MsgBox logMsg |
118 |
|
|
End If |
119 |
|
|
|
120 |
|
|
End |
121 |
|
|
|
122 |
|
|
End Sub |
123 |
|
|
|