--- experimental/host/vb_net_test/nettest.frm 2001/02/23 17:51:07 1.18 +++ experimental/host/vb_net_test/nettest.frm 2001/02/26 09:23:34 1.21 @@ -8,6 +8,7 @@ Begin VB.Form Form1 ClientLeft = 45 ClientTop = 330 ClientWidth = 4710 + Icon = "nettest.frx":0000 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False @@ -41,7 +42,7 @@ Begin VB.Form Form1 MultiLine = -1 'True ScrollBars = 2 'Vertical TabIndex = 1 - Text = "nettest.frx":0000 + Text = "nettest.frx":0742 Top = 3000 Width = 3975 End @@ -158,7 +159,7 @@ Dim TCPUpdateTime As Integer Dim protocolVersion As String Dim connected As Boolean -'Dim CUpTime As New CUpTime +Dim CUpTime As New CUpTime Dim responseNumber As Integer @@ -167,8 +168,17 @@ Private Sub Form_Load() protocolVersion = "1.1" Status.Caption = "Loading" - 'Form1.Caption = "i-scream Winhost " & protocolVersion & " for " & GetVersion() + Form1.Caption = "i-scream Winhost " & protocolVersion + Form1.Show + + CUpTime.Init + + If CUpTime.isWin9x Then + x = MsgBox("Sorry, the i-scream host can only be used to monitor servers (i.e. not Win9x)", 48, "Not a server.") + End + End If + ''''TEMP 'filterManagerHostname = "killigrew.ukc.ac.uk" 'filterManagerTCPPort = 4567 @@ -182,12 +192,13 @@ Private Sub Form_Load() filterManagerHostname = Left$(buf, length) length = GetPrivateProfileInt("i-scream Winhost", "FilterManagerPort", 0, App.Path & "/winhost.ini") filterManagerTCPPort = length + On Error GoTo 0 skip: Status.Caption = "Connecting to Filter Manager " & filterManagerHostname & ":" & filterManagerTCPPort Reconfigure_Click - Form1.Show + SystemTray.Icon = Val(Form1.Icon) SystemTray.Action = 0 @@ -368,7 +379,7 @@ Private Sub Timer1_Timer() End End If - osName = getVersion() + osName = GetVersion() osVersionMajor = verinfo.dwMajorVersion osVersionMinor = verinfo.dwMinorVersion osBuild = verinfo.dwBuildNumber @@ -402,6 +413,8 @@ Private Sub Timer1_Timer() memory& = memsts.dwAvailVirtual swapFree = memory& \ 1024 + uptime = GetTickCount \ 1000 + ' build the contents of the XML packet xml = "" & _ "" & _ @@ -411,6 +424,7 @@ Private Sub Timer1_Timer() "" & osName & "" & _ "" & osVersionMinor & "" & _ "" & processorType & "" & _ + "" & uptime & "" & _ "" & _ "" & memTotal & "" & memFree & "" & _ "" & swapTotal & "" & swapFree & "" & _