ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/experimental/host/vb_net_test/nettest.frm
(Generate patch)

Comparing experimental/host/vb_net_test/nettest.frm (file contents):
Revision 1.10 by pjm2, Fri Feb 23 11:42:06 2001 UTC vs.
Revision 1.11 by pjm2, Fri Feb 23 11:56:43 2001 UTC

# Line 1 | Line 1
1   VERSION 5.00
2   Object = "{248DD890-BB45-11CF-9ABC-0080C7E7B78D}#1.0#0"; "MSWINSCK.OCX"
3 + Object = "{33155A3D-0CE0-11D1-A6B4-444553540000}#1.0#0"; "SysTray.ocx"
4   Begin VB.Form Form1
5     BorderStyle     =   4  'Fixed ToolWindow
6     Caption         =   "i-scream Winhost"
# Line 9 | Line 10 | Begin VB.Form Form1
10     ClientWidth     =   5670
11     LinkTopic       =   "Form1"
12     MaxButton       =   0   'False
12   MinButton       =   0   'False
13     ScaleHeight     =   5655
14     ScaleWidth      =   5670
15     ShowInTaskbar   =   0   'False
16     StartUpPosition =   3  'Windows Default
17 +   Begin VB.CommandButton Hide
18 +      Caption         =   "Hide"
19 +      Height          =   495
20 +      Left            =   1800
21 +      TabIndex        =   7
22 +      Top             =   2160
23 +      Width           =   1215
24 +   End
25 +   Begin SysTray.SystemTray SystemTray
26 +      Left            =   3600
27 +      Top             =   1200
28 +      _ExtentX        =   847
29 +      _ExtentY        =   847
30 +      SysTrayText     =   "i-scream Winhost"
31 +      IconFile        =   0
32 +   End
33     Begin VB.Timer Timer1
34        Left            =   4200
35        Top             =   1200
# Line 173 | Line 189 | iniError:
189   End Sub
190  
191   Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
192 <    x = MsgBox("Are you sure you want to shut down the Winhost?", vbYesNo, "i-scream Winhost")
192 >    x = MsgBox("Are you sure you want to shut down the Winhost?  This will stop your computer sending information to the i-scream Central Monitoring System.", vbYesNo, "i-scream Winhost")
193      If x = 7 Then
194          Cancel = True
195      End If
196  
197   End Sub
198  
199 + Private Sub Hide_Click()
200 +    Form1.Visible = False
201 +    SystemTray.Icon = Val(Form1.Icon)
202 +    SystemTray.Action = 0
203 + End Sub
204 +
205   Private Sub Reconfigure_Click()
206      ' establish a TCP connection to a filtermanager
207      connected = False
208      TCPSock.Close
209      TCPSock.Connect filterManagerHostname, filterManagerTCPPort
210 + End Sub
211 +
212 +
213 +
214 + Private Sub SystemTray_MouseDblClk(ByVal Button As Integer)
215 +
216 +    Form1.Visible = True
217 +    Form1.SetFocus
218 +
219   End Sub
220  
221   Private Sub TCPSock_Connect()

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines