home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic .NET - Read Less - Learn More / Visual_Basic.NET_Read_Less_Learn_More_Richard_Bowman_Visual_2002.iso / Resources / Code / Ch11-MonitorWindowsService / Form1.vb < prev   
Text File  |  2001-09-02  |  4KB  |  100 lines

  1. Public Class Form1
  2.     Inherits System.Windows.Forms.Form
  3.  
  4. #Region " Windows Form Designer generated code "
  5.  
  6.     Public Sub New()
  7.         MyBase.New()
  8.  
  9.         'This call is required by the Windows Form Designer.
  10.         InitializeComponent()
  11.  
  12.         'Add any initialization after the InitializeComponent() call
  13.  
  14.     End Sub
  15.  
  16.     'Form overrides dispose to clean up the component list.
  17.     Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
  18.         If disposing Then
  19.             If Not (components Is Nothing) Then
  20.                 components.Dispose()
  21.             End If
  22.         End If
  23.         MyBase.Dispose(disposing)
  24.     End Sub
  25.     Friend WithEvents ServiceController1 As System.ServiceProcess.ServiceController
  26.     Friend WithEvents Button1 As System.Windows.Forms.Button
  27.     Friend WithEvents Button2 As System.Windows.Forms.Button
  28.     Friend WithEvents Button3 As System.Windows.Forms.Button
  29.  
  30.     'Required by the Windows Form Designer
  31.     Private components As System.ComponentModel.Container
  32.  
  33.     'NOTE: The following procedure is required by the Windows Form Designer
  34.     'It can be modified using the Windows Form Designer.  
  35.     'Do not modify it using the code editor.
  36.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  37.         Me.Button1 = New System.Windows.Forms.Button()
  38.         Me.Button2 = New System.Windows.Forms.Button()
  39.         Me.ServiceController1 = New System.ServiceProcess.ServiceController()
  40.         Me.Button3 = New System.Windows.Forms.Button()
  41.         Me.SuspendLayout()
  42.         '
  43.         'Button1
  44.         '
  45.         Me.Button1.Location = New System.Drawing.Point(64, 24)
  46.         Me.Button1.Name = "Button1"
  47.         Me.Button1.Size = New System.Drawing.Size(160, 40)
  48.         Me.Button1.TabIndex = 0
  49.         Me.Button1.Text = "Stop"
  50.         '
  51.         'Button2
  52.         '
  53.         Me.Button2.Location = New System.Drawing.Point(64, 80)
  54.         Me.Button2.Name = "Button2"
  55.         Me.Button2.Size = New System.Drawing.Size(160, 40)
  56.         Me.Button2.TabIndex = 1
  57.         Me.Button2.Text = "Start"
  58.         '
  59.         'ServiceController1
  60.         '
  61.         Me.ServiceController1.ServiceName = "Service1"
  62.         '
  63.         'Button3
  64.         '
  65.         Me.Button3.Location = New System.Drawing.Point(64, 136)
  66.         Me.Button3.Name = "Button3"
  67.         Me.Button3.Size = New System.Drawing.Size(160, 40)
  68.         Me.Button3.TabIndex = 2
  69.         Me.Button3.Text = "Status"
  70.         '
  71.         'Form1
  72.         '
  73.         Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
  74.         Me.ClientSize = New System.Drawing.Size(292, 273)
  75.         Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Button3, Me.Button2, Me.Button1})
  76.         Me.Name = "Form1"
  77.         Me.Text = "Form1"
  78.         Me.ResumeLayout(False)
  79.  
  80.     End Sub
  81.  
  82. #End Region
  83.  
  84.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  85.         ServiceController1.Stop()
  86.     End Sub
  87.  
  88.     Private Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
  89.         ServiceController1.Start()
  90.     End Sub
  91.  
  92.     Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
  93.         If ServiceController1.Status = _
  94.             ServiceProcess.ServiceControllerStatus.Running Then
  95.  
  96.             MessageBox.Show("The service is running.")
  97.         End If
  98.     End Sub
  99. End Class
  100.