Added the ability to launch other processes when a game is detected
This commit is contained in:
@@ -2,16 +2,16 @@
|
||||
|
||||
Public Class frmChooseGame
|
||||
|
||||
Private oProcess As mgrProcesses
|
||||
Private oProcess As mgrProcessDetection
|
||||
Private oGame As clsGame
|
||||
Private oGamesHash As New Hashtable
|
||||
Private bGameSelected As Boolean = False
|
||||
|
||||
Property Process As mgrProcesses
|
||||
Property Process As mgrProcessDetection
|
||||
Get
|
||||
Return oProcess
|
||||
End Get
|
||||
Set(value As mgrProcesses)
|
||||
Set(value As mgrProcessDetection)
|
||||
oProcess = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Generated
+20
-8
@@ -28,6 +28,7 @@ Partial Class frmGameManager
|
||||
Me.btnBackup = New System.Windows.Forms.Button()
|
||||
Me.btnClose = New System.Windows.Forms.Button()
|
||||
Me.grpConfig = New System.Windows.Forms.GroupBox()
|
||||
Me.btnGameID = New System.Windows.Forms.Button()
|
||||
Me.chkRegEx = New System.Windows.Forms.CheckBox()
|
||||
Me.lblComments = New System.Windows.Forms.Label()
|
||||
Me.txtComments = New System.Windows.Forms.TextBox()
|
||||
@@ -101,7 +102,7 @@ Partial Class frmGameManager
|
||||
Me.cmsDeleteBackup = New System.Windows.Forms.ContextMenuStrip(Me.components)
|
||||
Me.cmsDeleteOne = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.cmsDeleteAll = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.btnGameID = New System.Windows.Forms.Button()
|
||||
Me.btnProcesses = New System.Windows.Forms.Button()
|
||||
Me.grpConfig.SuspendLayout()
|
||||
CType(Me.nudLimit, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.grpExtra.SuspendLayout()
|
||||
@@ -190,6 +191,15 @@ Partial Class frmGameManager
|
||||
Me.grpConfig.TabStop = False
|
||||
Me.grpConfig.Text = "Configuration"
|
||||
'
|
||||
'btnGameID
|
||||
'
|
||||
Me.btnGameID.Location = New System.Drawing.Point(402, 17)
|
||||
Me.btnGameID.Name = "btnGameID"
|
||||
Me.btnGameID.Size = New System.Drawing.Size(117, 23)
|
||||
Me.btnGameID.TabIndex = 2
|
||||
Me.btnGameID.Text = "&Game ID..."
|
||||
Me.btnGameID.UseVisualStyleBackColor = True
|
||||
'
|
||||
'chkRegEx
|
||||
'
|
||||
Me.chkRegEx.AutoSize = True
|
||||
@@ -875,20 +885,21 @@ Partial Class frmGameManager
|
||||
Me.cmsDeleteAll.Size = New System.Drawing.Size(114, 22)
|
||||
Me.cmsDeleteAll.Text = "&All Files"
|
||||
'
|
||||
'btnGameID
|
||||
'btnProcesses
|
||||
'
|
||||
Me.btnGameID.Location = New System.Drawing.Point(402, 17)
|
||||
Me.btnGameID.Name = "btnGameID"
|
||||
Me.btnGameID.Size = New System.Drawing.Size(117, 23)
|
||||
Me.btnGameID.TabIndex = 2
|
||||
Me.btnGameID.Text = "&Game ID..."
|
||||
Me.btnGameID.UseVisualStyleBackColor = True
|
||||
Me.btnProcesses.Location = New System.Drawing.Point(454, 437)
|
||||
Me.btnProcesses.Name = "btnProcesses"
|
||||
Me.btnProcesses.Size = New System.Drawing.Size(75, 23)
|
||||
Me.btnProcesses.TabIndex = 20
|
||||
Me.btnProcesses.Text = "Processes..."
|
||||
Me.btnProcesses.UseVisualStyleBackColor = True
|
||||
'
|
||||
'frmGameManager
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(784, 661)
|
||||
Me.Controls.Add(Me.btnProcesses)
|
||||
Me.Controls.Add(Me.lblQuickFilter)
|
||||
Me.Controls.Add(Me.txtQuickFilter)
|
||||
Me.Controls.Add(Me.btnExport)
|
||||
@@ -1012,4 +1023,5 @@ Partial Class frmGameManager
|
||||
Friend WithEvents txtComments As TextBox
|
||||
Friend WithEvents chkRegEx As CheckBox
|
||||
Friend WithEvents btnGameID As Button
|
||||
Friend WithEvents btnProcesses As Button
|
||||
End Class
|
||||
|
||||
+57
-23
@@ -10,6 +10,7 @@ Public Class frmGameManager
|
||||
Private oCurrentBackupItem As clsBackup
|
||||
Private oCurrentGame As clsGame
|
||||
Private oTagsToSave As New List(Of KeyValuePair(Of String, String))
|
||||
Private oProcessesToSave As New List(Of KeyValuePair(Of String, String))
|
||||
Private bDisableExternalFunctions As Boolean = False
|
||||
Private bTriggerBackup As Boolean = False
|
||||
Private bTriggerRestore As Boolean = False
|
||||
@@ -35,7 +36,6 @@ Public Class frmGameManager
|
||||
Add = 3
|
||||
Disabled = 4
|
||||
MultiSelect = 5
|
||||
ViewTemp = 6
|
||||
End Enum
|
||||
|
||||
Private eCurrentMode As eModes = eModes.Disabled
|
||||
@@ -581,6 +581,36 @@ Public Class frmGameManager
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub OpenProcesses()
|
||||
Dim frm As New frmGameProcesses
|
||||
Dim oApp As clsGame
|
||||
Dim sMonitorIDS As New List(Of String)
|
||||
|
||||
If eCurrentMode = eModes.Add Then
|
||||
'Use a dummy ID
|
||||
sMonitorIDS.Add(Guid.NewGuid.ToString)
|
||||
frm.GameName = txtName.Text
|
||||
frm.NewMode = True
|
||||
frm.ProcessList = oProcessesToSave
|
||||
Else
|
||||
For Each oData In lstGames.SelectedItems
|
||||
oApp = DirectCast(GameData(oData.Key), clsGame)
|
||||
sMonitorIDS.Add(oApp.ID)
|
||||
Next
|
||||
frm.GameName = CurrentGame.Name
|
||||
frm.NewMode = False
|
||||
End If
|
||||
|
||||
frm.IDList = sMonitorIDS
|
||||
frm.ShowDialog()
|
||||
|
||||
If eCurrentMode = eModes.Add Then
|
||||
oProcessesToSave = frm.ProcessList
|
||||
Else
|
||||
ModeChange()
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub OpenTags()
|
||||
Dim frm As New frmGameTags
|
||||
Dim oApp As clsGame
|
||||
@@ -917,6 +947,7 @@ Public Class frmGameManager
|
||||
chkEnabled.Checked = True
|
||||
chkMonitorOnly.Checked = False
|
||||
btnTags.Enabled = True
|
||||
btnProcesses.Enabled = True
|
||||
lblTags.Text = String.Empty
|
||||
lblTags.Visible = True
|
||||
btnInclude.Text = frmGameManager_btnInclude
|
||||
@@ -944,6 +975,7 @@ Public Class frmGameManager
|
||||
btnOpenBackupFile.Enabled = False
|
||||
btnOpenRestorePath.Enabled = False
|
||||
btnTags.Enabled = True
|
||||
btnProcesses.Enabled = True
|
||||
lblTags.Visible = True
|
||||
btnImport.Enabled = False
|
||||
btnExport.Enabled = False
|
||||
@@ -963,31 +995,10 @@ Public Class frmGameManager
|
||||
btnDelete.Enabled = True
|
||||
btnBackup.Enabled = True
|
||||
btnTags.Enabled = True
|
||||
btnProcesses.Enabled = True
|
||||
lblTags.Visible = True
|
||||
btnImport.Enabled = True
|
||||
btnExport.Enabled = True
|
||||
Case eModes.ViewTemp
|
||||
grpFilter.Enabled = True
|
||||
lstGames.Enabled = True
|
||||
lblQuickFilter.Enabled = True
|
||||
txtQuickFilter.Enabled = True
|
||||
grpConfig.Enabled = False
|
||||
chkEnabled.Enabled = False
|
||||
chkMonitorOnly.Enabled = False
|
||||
grpExtra.Enabled = False
|
||||
grpStats.Enabled = True
|
||||
btnSave.Enabled = False
|
||||
btnCancel.Enabled = False
|
||||
btnAdd.Enabled = True
|
||||
btnDelete.Enabled = False
|
||||
btnBackup.Enabled = False
|
||||
btnOpenRestorePath.Enabled = False
|
||||
btnTags.Enabled = False
|
||||
lblTags.Visible = False
|
||||
btnInclude.Text = frmGameManager_btnInclude
|
||||
btnExclude.Text = frmGameManager_btnExclude
|
||||
btnImport.Enabled = True
|
||||
btnExport.Enabled = True
|
||||
Case eModes.Disabled
|
||||
grpFilter.Enabled = True
|
||||
lstGames.Enabled = True
|
||||
@@ -1010,6 +1021,7 @@ Public Class frmGameManager
|
||||
btnRestore.Enabled = False
|
||||
btnMarkAsRestored.Enabled = False
|
||||
btnTags.Enabled = False
|
||||
btnProcesses.Enabled = False
|
||||
lblTags.Visible = False
|
||||
btnInclude.Text = frmGameManager_btnInclude
|
||||
btnExclude.Text = frmGameManager_btnExclude
|
||||
@@ -1041,6 +1053,7 @@ Public Class frmGameManager
|
||||
btnRestore.Enabled = True
|
||||
btnMarkAsRestored.Enabled = True
|
||||
btnTags.Enabled = True
|
||||
btnProcesses.Enabled = True
|
||||
lblTags.Visible = False
|
||||
btnImport.Enabled = True
|
||||
btnExport.Enabled = True
|
||||
@@ -1150,6 +1163,22 @@ Public Class frmGameManager
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub SaveProcesses(ByVal sID As String)
|
||||
Dim oGameProcess As clsGameProcess
|
||||
Dim oGameProcesses As List(Of clsGameProcess)
|
||||
|
||||
If oProcessesToSave.Count > 0 Then
|
||||
oGameProcesses = New List(Of clsGameProcess)
|
||||
For Each kp As KeyValuePair(Of String, String) In oProcessesToSave
|
||||
oGameProcess = New clsGameProcess
|
||||
oGameProcess.MonitorID = sID
|
||||
oGameProcess.ProcessID = kp.Key
|
||||
oGameProcesses.Add(oGameProcess)
|
||||
Next
|
||||
mgrGameProcesses.DoGameProcessAddBatch(oGameProcesses)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub SaveTags(ByVal sID As String)
|
||||
Dim oGameTag As clsGameTag
|
||||
Dim oGameTags As List(Of clsGameTag)
|
||||
@@ -1210,6 +1239,7 @@ Public Class frmGameManager
|
||||
bSuccess = True
|
||||
mgrMonitorList.DoListAdd(oApp)
|
||||
SaveTags(oApp.ID)
|
||||
SaveProcesses(oApp.ID)
|
||||
eCurrentMode = eModes.View
|
||||
End If
|
||||
Case eModes.Edit
|
||||
@@ -1696,6 +1726,10 @@ Public Class frmGameManager
|
||||
OpenTags()
|
||||
End Sub
|
||||
|
||||
Private Sub btnProcesses_Click(sender As Object, e As EventArgs) Handles btnProcesses.Click
|
||||
OpenProcesses()
|
||||
End Sub
|
||||
|
||||
Private Sub btnDeleteBackup_Click(sender As Object, e As EventArgs) Handles btnDeleteBackup.Click
|
||||
If cboRemoteBackup.Items.Count > 1 Then
|
||||
cmsDeleteBackup.Show(btnDeleteBackup, New Drawing.Point(btnDeleteBackup.Size.Width - Math.Floor(btnDeleteBackup.Size.Width * 0.1), btnDeleteBackup.Size.Height - Math.Floor(btnDeleteBackup.Size.Height * 0.5)), ToolStripDropDownDirection.AboveRight)
|
||||
|
||||
Generated
+142
@@ -0,0 +1,142 @@
|
||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||
Partial Class frmGameProcesses
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
'Form overrides dispose to clean up the component list.
|
||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
Try
|
||||
If disposing AndAlso components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
Finally
|
||||
MyBase.Dispose(disposing)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'Required by the Windows Form Designer
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'NOTE: The following procedure is required by the Windows Form Designer
|
||||
'It can be modified using the Windows Form Designer.
|
||||
'Do not modify it using the code editor.
|
||||
<System.Diagnostics.DebuggerStepThrough()> _
|
||||
Private Sub InitializeComponent()
|
||||
Me.btnOpenProcesses = New System.Windows.Forms.Button()
|
||||
Me.btnClose = New System.Windows.Forms.Button()
|
||||
Me.lblGameProcesses = New System.Windows.Forms.Label()
|
||||
Me.lblProcesses = New System.Windows.Forms.Label()
|
||||
Me.btnRemove = New System.Windows.Forms.Button()
|
||||
Me.btnAdd = New System.Windows.Forms.Button()
|
||||
Me.lstGameProcesses = New System.Windows.Forms.ListBox()
|
||||
Me.lstProcesses = New System.Windows.Forms.ListBox()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'btnOpenProcesses
|
||||
'
|
||||
Me.btnOpenProcesses.Location = New System.Drawing.Point(12, 229)
|
||||
Me.btnOpenProcesses.Name = "btnOpenProcesses"
|
||||
Me.btnOpenProcesses.Size = New System.Drawing.Size(110, 23)
|
||||
Me.btnOpenProcesses.TabIndex = 12
|
||||
Me.btnOpenProcesses.Text = "&Process Manager..."
|
||||
Me.btnOpenProcesses.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btnClose
|
||||
'
|
||||
Me.btnClose.Location = New System.Drawing.Point(297, 229)
|
||||
Me.btnClose.Name = "btnClose"
|
||||
Me.btnClose.Size = New System.Drawing.Size(75, 23)
|
||||
Me.btnClose.TabIndex = 13
|
||||
Me.btnClose.Text = "&Close"
|
||||
Me.btnClose.UseVisualStyleBackColor = True
|
||||
'
|
||||
'lblGameProcesses
|
||||
'
|
||||
Me.lblGameProcesses.AutoSize = True
|
||||
Me.lblGameProcesses.Location = New System.Drawing.Point(251, 8)
|
||||
Me.lblGameProcesses.Name = "lblGameProcesses"
|
||||
Me.lblGameProcesses.Size = New System.Drawing.Size(93, 13)
|
||||
Me.lblGameProcesses.TabIndex = 6
|
||||
Me.lblGameProcesses.Text = "Current Processes"
|
||||
'
|
||||
'lblProcesses
|
||||
'
|
||||
Me.lblProcesses.AutoSize = True
|
||||
Me.lblProcesses.Location = New System.Drawing.Point(36, 8)
|
||||
Me.lblProcesses.Name = "lblProcesses"
|
||||
Me.lblProcesses.Size = New System.Drawing.Size(102, 13)
|
||||
Me.lblProcesses.TabIndex = 7
|
||||
Me.lblProcesses.Text = "Available Processes"
|
||||
'
|
||||
'btnRemove
|
||||
'
|
||||
Me.btnRemove.Location = New System.Drawing.Point(168, 114)
|
||||
Me.btnRemove.Name = "btnRemove"
|
||||
Me.btnRemove.Size = New System.Drawing.Size(48, 23)
|
||||
Me.btnRemove.TabIndex = 10
|
||||
Me.btnRemove.Text = "<"
|
||||
Me.btnRemove.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btnAdd
|
||||
'
|
||||
Me.btnAdd.Location = New System.Drawing.Point(168, 85)
|
||||
Me.btnAdd.Name = "btnAdd"
|
||||
Me.btnAdd.Size = New System.Drawing.Size(48, 23)
|
||||
Me.btnAdd.TabIndex = 9
|
||||
Me.btnAdd.Text = ">"
|
||||
Me.btnAdd.UseVisualStyleBackColor = True
|
||||
'
|
||||
'lstGameProcesses
|
||||
'
|
||||
Me.lstGameProcesses.FormattingEnabled = True
|
||||
Me.lstGameProcesses.Location = New System.Drawing.Point(222, 24)
|
||||
Me.lstGameProcesses.Name = "lstGameProcesses"
|
||||
Me.lstGameProcesses.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended
|
||||
Me.lstGameProcesses.Size = New System.Drawing.Size(150, 199)
|
||||
Me.lstGameProcesses.Sorted = True
|
||||
Me.lstGameProcesses.TabIndex = 11
|
||||
'
|
||||
'lstProcesses
|
||||
'
|
||||
Me.lstProcesses.FormattingEnabled = True
|
||||
Me.lstProcesses.Location = New System.Drawing.Point(12, 24)
|
||||
Me.lstProcesses.Name = "lstProcesses"
|
||||
Me.lstProcesses.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended
|
||||
Me.lstProcesses.Size = New System.Drawing.Size(150, 199)
|
||||
Me.lstProcesses.Sorted = True
|
||||
Me.lstProcesses.TabIndex = 8
|
||||
'
|
||||
'frmGameProcesses
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(384, 261)
|
||||
Me.Controls.Add(Me.btnOpenProcesses)
|
||||
Me.Controls.Add(Me.btnClose)
|
||||
Me.Controls.Add(Me.lblGameProcesses)
|
||||
Me.Controls.Add(Me.lblProcesses)
|
||||
Me.Controls.Add(Me.btnRemove)
|
||||
Me.Controls.Add(Me.btnAdd)
|
||||
Me.Controls.Add(Me.lstGameProcesses)
|
||||
Me.Controls.Add(Me.lstProcesses)
|
||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
||||
Me.MaximizeBox = False
|
||||
Me.MinimizeBox = False
|
||||
Me.Name = "frmGameProcesses"
|
||||
Me.ShowIcon = False
|
||||
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
|
||||
Me.Text = "Edit Processes"
|
||||
Me.ResumeLayout(False)
|
||||
Me.PerformLayout()
|
||||
|
||||
End Sub
|
||||
|
||||
Friend WithEvents btnOpenProcesses As Button
|
||||
Friend WithEvents btnClose As Button
|
||||
Friend WithEvents lblGameProcesses As Label
|
||||
Friend WithEvents lblProcesses As Label
|
||||
Friend WithEvents btnRemove As Button
|
||||
Friend WithEvents btnAdd As Button
|
||||
Friend WithEvents lstGameProcesses As ListBox
|
||||
Friend WithEvents lstProcesses As ListBox
|
||||
End Class
|
||||
@@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
||||
@@ -0,0 +1,247 @@
|
||||
Imports GBM.My.Resources
|
||||
|
||||
Public Class frmGameProcesses
|
||||
Private sMonitorIDs As List(Of String)
|
||||
Private sGameName As String = String.Empty
|
||||
Private bNewMode As Boolean = False
|
||||
Private oProcessList As List(Of KeyValuePair(Of String, String))
|
||||
|
||||
Public Property IDList As List(Of String)
|
||||
Get
|
||||
Return sMonitorIDs
|
||||
End Get
|
||||
Set(value As List(Of String))
|
||||
sMonitorIDs = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Property GameName As String
|
||||
Get
|
||||
Return sGameName
|
||||
End Get
|
||||
Set(value As String)
|
||||
sGameName = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Property NewMode As Boolean
|
||||
Get
|
||||
Return bNewMode
|
||||
End Get
|
||||
Set(value As Boolean)
|
||||
bNewMode = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Property ProcessList As List(Of KeyValuePair(Of String, String))
|
||||
Get
|
||||
Return oProcessList
|
||||
End Get
|
||||
Set(value As List(Of KeyValuePair(Of String, String)))
|
||||
oProcessList = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Private Sub AddProcess()
|
||||
Dim oData As KeyValuePair(Of String, String)
|
||||
Dim oProcesss As List(Of KeyValuePair(Of String, String))
|
||||
Dim oGameProcess As clsGameProcess
|
||||
Dim oGameProcesses As List(Of clsGameProcess)
|
||||
|
||||
If lstProcesses.SelectedItems.Count = 1 Then
|
||||
oData = lstProcesses.SelectedItems(0)
|
||||
|
||||
oGameProcesses = New List(Of clsGameProcess)
|
||||
For Each sID As String In IDList
|
||||
oGameProcess = New clsGameProcess
|
||||
oGameProcess.MonitorID = sID
|
||||
oGameProcess.ProcessID = oData.Key
|
||||
oGameProcesses.Add(oGameProcess)
|
||||
Next
|
||||
|
||||
If Not bNewMode Then mgrGameProcesses.DoGameProcessAddBatch(oGameProcesses)
|
||||
|
||||
lstGameProcesses.Items.Add(oData)
|
||||
lstProcesses.Items.Remove(oData)
|
||||
ElseIf lstProcesses.SelectedItems.Count > 1 Then
|
||||
oProcesss = New List(Of KeyValuePair(Of String, String))
|
||||
|
||||
For Each oData In lstProcesses.SelectedItems
|
||||
oProcesss.Add(oData)
|
||||
Next
|
||||
|
||||
For Each kp As KeyValuePair(Of String, String) In oProcesss
|
||||
oGameProcesses = New List(Of clsGameProcess)
|
||||
For Each sID As String In IDList
|
||||
oGameProcess = New clsGameProcess
|
||||
oGameProcess.MonitorID = sID
|
||||
oGameProcess.ProcessID = kp.Key
|
||||
oGameProcesses.Add(oGameProcess)
|
||||
Next
|
||||
|
||||
If Not bNewMode Then mgrGameProcesses.DoGameProcessAddBatch(oGameProcesses)
|
||||
|
||||
lstGameProcesses.Items.Add(kp)
|
||||
lstProcesses.Items.Remove(kp)
|
||||
Next
|
||||
End If
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub RemoveProcess()
|
||||
Dim oData As KeyValuePair(Of String, String)
|
||||
Dim oProcesses As List(Of KeyValuePair(Of String, String))
|
||||
Dim oGameProcess As clsGameProcess
|
||||
Dim oGameProcesses As List(Of clsGameProcess)
|
||||
|
||||
If lstGameProcesses.SelectedItems.Count = 1 Then
|
||||
oData = lstGameProcesses.SelectedItems(0)
|
||||
|
||||
oGameProcesses = New List(Of clsGameProcess)
|
||||
For Each sID As String In IDList
|
||||
oGameProcess = New clsGameProcess
|
||||
oGameProcess.MonitorID = sID
|
||||
oGameProcess.ProcessID = oData.Key
|
||||
oGameProcesses.Add(oGameProcess)
|
||||
Next
|
||||
|
||||
If Not bNewMode Then mgrGameProcesses.DoGameProcessDelete(oGameProcesses)
|
||||
|
||||
lstGameProcesses.Items.Remove(oData)
|
||||
lstProcesses.Items.Add(oData)
|
||||
ElseIf lstGameProcesses.SelectedItems.Count > 1 Then
|
||||
oProcesses = New List(Of KeyValuePair(Of String, String))
|
||||
|
||||
For Each oData In lstGameProcesses.SelectedItems
|
||||
oProcesses.Add(oData)
|
||||
Next
|
||||
|
||||
For Each kp As KeyValuePair(Of String, String) In oProcesses
|
||||
oGameProcesses = New List(Of clsGameProcess)
|
||||
For Each sID As String In IDList
|
||||
oGameProcess = New clsGameProcess
|
||||
oGameProcess.MonitorID = sID
|
||||
oGameProcess.ProcessID = kp.Key
|
||||
oGameProcesses.Add(oGameProcess)
|
||||
Next
|
||||
|
||||
If Not bNewMode Then mgrGameProcesses.DoGameProcessDelete(oGameProcesses)
|
||||
|
||||
lstGameProcesses.Items.Remove(kp)
|
||||
lstProcesses.Items.Add(kp)
|
||||
Next
|
||||
End If
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub LoadData()
|
||||
Dim hshProcesses As Hashtable
|
||||
Dim hshGameProcesses As Hashtable
|
||||
Dim oProcess As clsProcess
|
||||
Dim oData As KeyValuePair(Of String, String)
|
||||
|
||||
'Load Processes
|
||||
hshProcesses = mgrProcess.ReadProcesses()
|
||||
|
||||
'Handle Lists
|
||||
lstProcesses.Items.Clear()
|
||||
lstGameProcesses.Items.Clear()
|
||||
|
||||
lstProcesses.ValueMember = "Key"
|
||||
lstProcesses.DisplayMember = "Value"
|
||||
lstGameProcesses.ValueMember = "Key"
|
||||
lstGameProcesses.DisplayMember = "Value"
|
||||
|
||||
If bNewMode Then
|
||||
For Each kp As KeyValuePair(Of String, String) In oProcessList
|
||||
'We need to be sure the tags still exist if the "Process Manager" form was used
|
||||
If hshProcesses.ContainsKey(kp.Value) Then
|
||||
lstGameProcesses.Items.Add(kp)
|
||||
End If
|
||||
Next
|
||||
|
||||
For Each kp As KeyValuePair(Of String, String) In oProcessList
|
||||
If hshProcesses.ContainsKey(kp.Value) Then
|
||||
hshProcesses.Remove(kp.Value)
|
||||
End If
|
||||
Next
|
||||
Else
|
||||
hshGameProcesses = mgrGameProcesses.GetProcessesByGameMulti(IDList)
|
||||
|
||||
For Each de As DictionaryEntry In hshGameProcesses
|
||||
oProcess = DirectCast(de.Value, clsProcess)
|
||||
If hshProcesses.ContainsKey(oProcess.Name) Then
|
||||
hshProcesses.Remove(oProcess.Name)
|
||||
End If
|
||||
Next
|
||||
|
||||
For Each de As DictionaryEntry In hshGameProcesses
|
||||
oProcess = DirectCast(de.Value, clsProcess)
|
||||
oData = New KeyValuePair(Of String, String)(oProcess.ID, oProcess.Name)
|
||||
lstGameProcesses.Items.Add(oData)
|
||||
Next
|
||||
End If
|
||||
|
||||
For Each de As DictionaryEntry In hshProcesses
|
||||
oProcess = DirectCast(de.Value, clsProcess)
|
||||
oData = New KeyValuePair(Of String, String)(oProcess.ID, oProcess.Name)
|
||||
lstProcesses.Items.Add(oData)
|
||||
Next
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub BuildProcessList()
|
||||
Dim oData As KeyValuePair(Of String, String)
|
||||
oProcessList.Clear()
|
||||
For Each oData In lstGameProcesses.Items
|
||||
oProcessList.Add(oData)
|
||||
Next
|
||||
End Sub
|
||||
|
||||
Private Sub OpenProcessManager()
|
||||
Dim frm As New frmProcessManager
|
||||
frm.ShowDialog()
|
||||
LoadData()
|
||||
End Sub
|
||||
|
||||
Private Sub SetForm()
|
||||
'Set Form Name
|
||||
If IDList.Count > 1 Then
|
||||
Me.Text = frmGameProcesses_FormNameMulti
|
||||
Else
|
||||
Me.Text = mgrCommon.FormatString(frmGameProcesses_FormNameSingle, GameName)
|
||||
End If
|
||||
|
||||
'Set Form Text
|
||||
btnOpenProcesses.Text = frmGameProcesses_btnOpenProcesses
|
||||
btnClose.Text = frmGameProcesses_btnClose
|
||||
lblGameProcesses.Text = frmGameProcesses_lblGameProccesses
|
||||
lblProcesses.Text = frmGameProcesses_lblProcesses
|
||||
btnRemove.Text = frmGameProcesses_btnRemove
|
||||
btnAdd.Text = frmGameProcesses_btnAdd
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub frmGameProcesses_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
LoadData()
|
||||
SetForm()
|
||||
End Sub
|
||||
|
||||
Private Sub btnClose_Click(sender As Object, e As EventArgs) Handles btnClose.Click
|
||||
If bNewMode Then BuildProcessList()
|
||||
Me.Close()
|
||||
End Sub
|
||||
|
||||
Private Sub btnAdd_Click(sender As Object, e As EventArgs) Handles btnAdd.Click
|
||||
AddProcess()
|
||||
End Sub
|
||||
|
||||
Private Sub btnRemove_Click(sender As Object, e As EventArgs) Handles btnRemove.Click
|
||||
RemoveProcess()
|
||||
End Sub
|
||||
|
||||
Private Sub btnOpenProcesses_Click(sender As Object, e As EventArgs) Handles btnOpenProcesses.Click
|
||||
If bNewMode Then BuildProcessList()
|
||||
OpenProcessManager()
|
||||
End Sub
|
||||
End Class
|
||||
Generated
+20
-4
@@ -36,6 +36,7 @@ Partial Class frmMain
|
||||
Me.gMonTraySetupGameManager = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.gMonTraySetupCustomVariables = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.gMonTraySetupTags = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.gMonTraySetupProcessManager = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.gMonTrayTools = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.gMonTrayToolsCompact = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.gMonTrayToolsLog = New System.Windows.Forms.ToolStripMenuItem()
|
||||
@@ -65,6 +66,7 @@ Partial Class frmMain
|
||||
Me.gMonSetupAddWizard = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.gMonSetupCustomVariables = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.gMonSetupTags = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.gMonSetupProcessManager = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.gMonTools = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.gMonToolsCompact = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.gMonToolsLog = New System.Windows.Forms.ToolStripMenuItem()
|
||||
@@ -143,7 +145,7 @@ Partial Class frmMain
|
||||
'
|
||||
'gMonTraySetup
|
||||
'
|
||||
Me.gMonTraySetup.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonTraySetupAddWizard, Me.gMonTraySetupGameManager, Me.gMonTraySetupCustomVariables, Me.gMonTraySetupTags})
|
||||
Me.gMonTraySetup.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonTraySetupAddWizard, Me.gMonTraySetupGameManager, Me.gMonTraySetupCustomVariables, Me.gMonTraySetupTags, Me.gMonTraySetupProcessManager})
|
||||
Me.gMonTraySetup.Name = "gMonTraySetup"
|
||||
Me.gMonTraySetup.Size = New System.Drawing.Size(161, 22)
|
||||
Me.gMonTraySetup.Text = "&Setup"
|
||||
@@ -172,6 +174,12 @@ Partial Class frmMain
|
||||
Me.gMonTraySetupTags.Size = New System.Drawing.Size(201, 22)
|
||||
Me.gMonTraySetupTags.Text = "&Tags..."
|
||||
'
|
||||
'gMonTraySetupProcessManager
|
||||
'
|
||||
Me.gMonTraySetupProcessManager.Name = "gMonTraySetupProcessManager"
|
||||
Me.gMonTraySetupProcessManager.Size = New System.Drawing.Size(201, 22)
|
||||
Me.gMonTraySetupProcessManager.Text = "Process &Manager..."
|
||||
'
|
||||
'gMonTrayTools
|
||||
'
|
||||
Me.gMonTrayTools.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonTrayToolsCompact, Me.gMonTrayToolsLog, Me.gMonTrayToolsSessions, Me.gMonTrayToolsSyncGameID})
|
||||
@@ -342,7 +350,7 @@ Partial Class frmMain
|
||||
'
|
||||
'gMonSetup
|
||||
'
|
||||
Me.gMonSetup.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonSetupGameManager, Me.gMonSetupAddWizard, Me.gMonSetupCustomVariables, Me.gMonSetupTags})
|
||||
Me.gMonSetup.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonSetupGameManager, Me.gMonSetupAddWizard, Me.gMonSetupCustomVariables, Me.gMonSetupTags, Me.gMonSetupProcessManager})
|
||||
Me.gMonSetup.Name = "gMonSetup"
|
||||
Me.gMonSetup.Size = New System.Drawing.Size(49, 20)
|
||||
Me.gMonSetup.Text = "&Setup"
|
||||
@@ -371,6 +379,12 @@ Partial Class frmMain
|
||||
Me.gMonSetupTags.Size = New System.Drawing.Size(201, 22)
|
||||
Me.gMonSetupTags.Text = "&Tags..."
|
||||
'
|
||||
'gMonSetupProcessManager
|
||||
'
|
||||
Me.gMonSetupProcessManager.Name = "gMonSetupProcessManager"
|
||||
Me.gMonSetupProcessManager.Size = New System.Drawing.Size(201, 22)
|
||||
Me.gMonSetupProcessManager.Text = "Process &Manager..."
|
||||
'
|
||||
'gMonTools
|
||||
'
|
||||
Me.gMonTools.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.gMonToolsCompact, Me.gMonToolsLog, Me.gMonToolsSessions, Me.gMonToolsSyncGameID})
|
||||
@@ -419,13 +433,13 @@ Partial Class frmMain
|
||||
'gMonToolsSyncGameIDOfficial
|
||||
'
|
||||
Me.gMonToolsSyncGameIDOfficial.Name = "gMonToolsSyncGameIDOfficial"
|
||||
Me.gMonToolsSyncGameIDOfficial.Size = New System.Drawing.Size(152, 22)
|
||||
Me.gMonToolsSyncGameIDOfficial.Size = New System.Drawing.Size(142, 22)
|
||||
Me.gMonToolsSyncGameIDOfficial.Text = "&Official List..."
|
||||
'
|
||||
'gMonToolsSyncGameIDFile
|
||||
'
|
||||
Me.gMonToolsSyncGameIDFile.Name = "gMonToolsSyncGameIDFile"
|
||||
Me.gMonToolsSyncGameIDFile.Size = New System.Drawing.Size(152, 22)
|
||||
Me.gMonToolsSyncGameIDFile.Size = New System.Drawing.Size(142, 22)
|
||||
Me.gMonToolsSyncGameIDFile.Text = "&File..."
|
||||
'
|
||||
'gMonHelp
|
||||
@@ -671,4 +685,6 @@ Partial Class frmMain
|
||||
Friend WithEvents gMonTrayToolsSyncGameID As ToolStripMenuItem
|
||||
Friend WithEvents gMonTrayToolsSyncGameIDOfficial As ToolStripMenuItem
|
||||
Friend WithEvents gMonTrayToolsSyncGameIDFile As ToolStripMenuItem
|
||||
Friend WithEvents gMonTraySetupProcessManager As ToolStripMenuItem
|
||||
Friend WithEvents gMonSetupProcessManager As ToolStripMenuItem
|
||||
End Class
|
||||
|
||||
+98
-20
@@ -40,6 +40,7 @@ Public Class frmMain
|
||||
Private sPriorCompany As String
|
||||
Private sPriorVersion As String
|
||||
Private iRestoreTimeOut As Integer
|
||||
Private oChildProcesses As New Hashtable
|
||||
Private wState As FormWindowState = FormWindowState.Normal
|
||||
|
||||
'Developer Debug Flags
|
||||
@@ -52,7 +53,7 @@ Public Class frmMain
|
||||
WithEvents tmRestoreCheck As New System.Timers.Timer
|
||||
WithEvents tmFileWatcherQueue As New System.Timers.Timer
|
||||
|
||||
Public WithEvents oProcess As New mgrProcesses
|
||||
Public WithEvents oProcess As New mgrProcessDetection
|
||||
Public WithEvents oBackup As New mgrBackup
|
||||
Public WithEvents oRestore As New mgrRestore
|
||||
Public hshScanList As Hashtable
|
||||
@@ -844,6 +845,13 @@ Public Class frmMain
|
||||
ResumeScan()
|
||||
End Sub
|
||||
|
||||
Private Sub OpenProcessManager()
|
||||
Dim frm As New frmProcessManager
|
||||
PauseScan()
|
||||
frm.ShowDialog()
|
||||
ResumeScan()
|
||||
End Sub
|
||||
|
||||
Private Sub OpenGameManager(Optional ByVal bPendingRestores As Boolean = False)
|
||||
Dim frm As New frmGameManager
|
||||
PauseScan()
|
||||
@@ -1381,6 +1389,7 @@ Public Class frmMain
|
||||
gMonSetupAddWizard.Text = frmMain_gMonSetupAddWizard
|
||||
gMonSetupCustomVariables.Text = frmMain_gMonSetupCustomVariables
|
||||
gMonSetupTags.Text = frmMain_gMonSetupTags
|
||||
gMonSetupProcessManager.Text = frmMain_gMonSetupProcessManager
|
||||
gMonTools.Text = frmMain_gMonTools
|
||||
gMonToolsCompact.Text = frmMain_gMonToolsCompact
|
||||
gMonToolsLog.Text = frmMain_gMonToolsLog
|
||||
@@ -1405,6 +1414,7 @@ Public Class frmMain
|
||||
gMonTraySetupAddWizard.Text = frmMain_gMonSetupAddWizard
|
||||
gMonTraySetupCustomVariables.Text = frmMain_gMonSetupCustomVariables
|
||||
gMonTraySetupTags.Text = frmMain_gMonSetupTags
|
||||
gMonTraySetupProcessManager.Text = frmMain_gMonSetupProcessManager
|
||||
gMonTrayTools.Text = frmMain_gMonTools
|
||||
gMonTrayToolsCompact.Text = frmMain_gMonToolsCompact
|
||||
gMonTrayToolsLog.Text = frmMain_gMonToolsLog
|
||||
@@ -1439,6 +1449,60 @@ Public Class frmMain
|
||||
ResetGameInfo()
|
||||
End Sub
|
||||
|
||||
Private Function BuildChildProcesses() As Integer
|
||||
Dim oCurrentProcess As clsProcess
|
||||
Dim oProcessList As Hashtable
|
||||
Dim prsChild As Process
|
||||
|
||||
oChildProcesses.Clear()
|
||||
|
||||
oProcessList = mgrGameProcesses.GetProcessesByGame(oProcess.GameInfo.ID)
|
||||
|
||||
If oProcessList.Count > 0 Then
|
||||
For Each oCurrentProcess In oProcessList.Values
|
||||
prsChild = New Process
|
||||
prsChild.StartInfo.Arguments = oCurrentProcess.Args
|
||||
prsChild.StartInfo.FileName = oCurrentProcess.Path
|
||||
prsChild.StartInfo.UseShellExecute = False
|
||||
prsChild.StartInfo.RedirectStandardOutput = True
|
||||
prsChild.StartInfo.CreateNoWindow = True
|
||||
oChildProcesses.Add(oCurrentProcess, prsChild)
|
||||
Next
|
||||
End If
|
||||
|
||||
Return oChildProcesses.Count
|
||||
End Function
|
||||
|
||||
Private Sub StartChildProcesses()
|
||||
Dim prsChild As Process
|
||||
|
||||
Try
|
||||
For Each prsChild In oChildProcesses.Values
|
||||
prsChild.Start()
|
||||
Next
|
||||
Catch ex As Exception
|
||||
UpdateLog(mgrCommon.FormatString(frmMain_ErrorStartChildProcess, oProcess.GameInfo.CroppedName), True, ToolTipIcon.Error)
|
||||
UpdateLog(mgrCommon.FormatString(App_GenericError, ex.Message), False,, False)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
Private Sub EndChildProcesses()
|
||||
Dim oCurrentProcess As clsProcess
|
||||
Dim prsChild As Process
|
||||
|
||||
Try
|
||||
For Each de As DictionaryEntry In oChildProcesses
|
||||
oCurrentProcess = DirectCast(de.Key, clsProcess)
|
||||
prsChild = DirectCast(de.Value, Process)
|
||||
prsChild.Kill()
|
||||
Next
|
||||
|
||||
Catch ex As Exception
|
||||
UpdateLog(mgrCommon.FormatString(frmMain_ErrorEndChildProcess, oProcess.GameInfo.CroppedName), True, ToolTipIcon.Error)
|
||||
UpdateLog(mgrCommon.FormatString(App_GenericError, ex.Message), False,, False)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'Functions that control the scanning for games
|
||||
Private Sub StartScan()
|
||||
tmScanTimer.Interval = 5000
|
||||
@@ -1684,6 +1748,10 @@ Public Class frmMain
|
||||
OpenTags()
|
||||
End Sub
|
||||
|
||||
Private Sub gMonSetupProcessManager_Click(sender As Object, e As EventArgs) Handles gMonSetupProcessManager.Click, gMonTraySetupProcessManager.Click
|
||||
OpenProcessManager()
|
||||
End Sub
|
||||
|
||||
Private Sub gMonHelpAbout_Click(sender As Object, e As EventArgs) Handles gMonHelpAbout.Click
|
||||
OpenAbout()
|
||||
End Sub
|
||||
@@ -1712,6 +1780,14 @@ Public Class frmMain
|
||||
OpenSessions()
|
||||
End Sub
|
||||
|
||||
Private Sub gMonToolsSyncGameIDOfficial_Click(sender As Object, e As EventArgs) Handles gMonToolsSyncGameIDOfficial.Click, gMonTrayToolsSyncGameIDOfficial.Click
|
||||
SyncGameIDs(True)
|
||||
End Sub
|
||||
|
||||
Private Sub gMonToolsSyncGameIDFile_Click(sender As Object, e As EventArgs) Handles gMonToolsSyncGameIDFile.Click, gMonTrayToolsSyncGameIDFile.Click
|
||||
SyncGameIDs(False)
|
||||
End Sub
|
||||
|
||||
Private Sub gMonNotification_Click(sender As Object, e As EventArgs) Handles gMonNotification.Click, gMonTrayNotification.Click
|
||||
gMonNotification.Visible = False
|
||||
gMonTrayNotification.Visible = False
|
||||
@@ -1810,18 +1886,23 @@ Public Class frmMain
|
||||
If bContinue = True Then
|
||||
CheckForSavedDuplicate()
|
||||
If oProcess.Duplicate Then
|
||||
UpdateLog(frmMain_MultipleGamesDetected, oSettings.ShowDetectionToolTips)
|
||||
UpdateStatus(frmMain_MultipleGamesDetected)
|
||||
SetGameInfo(True)
|
||||
Else
|
||||
UpdateLog(mgrCommon.FormatString(frmMain_GameDetected, oProcess.GameInfo.Name), oSettings.ShowDetectionToolTips)
|
||||
UpdateStatus(mgrCommon.FormatString(frmMain_GameDetected, oProcess.GameInfo.CroppedName))
|
||||
SetGameInfo()
|
||||
End If
|
||||
oProcess.StartTime = Now
|
||||
bwMonitor.RunWorkerAsync()
|
||||
UpdateLog(frmMain_MultipleGamesDetected, oSettings.ShowDetectionToolTips)
|
||||
UpdateStatus(frmMain_MultipleGamesDetected)
|
||||
SetGameInfo(True)
|
||||
Else
|
||||
StopScan()
|
||||
UpdateLog(mgrCommon.FormatString(frmMain_GameDetected, oProcess.GameInfo.Name), oSettings.ShowDetectionToolTips)
|
||||
UpdateStatus(mgrCommon.FormatString(frmMain_GameDetected, oProcess.GameInfo.CroppedName))
|
||||
SetGameInfo()
|
||||
End If
|
||||
|
||||
If BuildChildProcesses() > 0 Then
|
||||
StartChildProcesses()
|
||||
End If
|
||||
|
||||
oProcess.StartTime = Now
|
||||
bwMonitor.RunWorkerAsync()
|
||||
Else
|
||||
StopScan()
|
||||
End If
|
||||
End If
|
||||
End Sub
|
||||
@@ -1843,6 +1924,11 @@ Public Class frmMain
|
||||
|
||||
Private Sub bwMain_RunWorkerCompleted(sender As System.Object, e As System.ComponentModel.RunWorkerCompletedEventArgs) Handles bwMonitor.RunWorkerCompleted
|
||||
Dim bContinue As Boolean = True
|
||||
|
||||
If oChildProcesses.Count > 0 Then
|
||||
EndChildProcesses()
|
||||
End If
|
||||
|
||||
oProcess.EndTime = Now
|
||||
|
||||
If Not bCancelledByUser Then
|
||||
@@ -1948,12 +2034,4 @@ Public Class frmMain
|
||||
'Move focus to first label
|
||||
lblGameTitle.Focus()
|
||||
End Sub
|
||||
|
||||
Private Sub gMonToolsSyncGameIDOfficial_Click(sender As Object, e As EventArgs) Handles gMonToolsSyncGameIDOfficial.Click, gMonTrayToolsSyncGameIDOfficial.Click
|
||||
SyncGameIDs(True)
|
||||
End Sub
|
||||
|
||||
Private Sub gMonToolsSyncGameIDFile_Click(sender As Object, e As EventArgs) Handles gMonToolsSyncGameIDFile.Click, gMonTrayToolsSyncGameIDFile.Click
|
||||
SyncGameIDs(False)
|
||||
End Sub
|
||||
End Class
|
||||
Generated
+241
@@ -0,0 +1,241 @@
|
||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||
Partial Class frmProcessManager
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
'Form overrides dispose to clean up the component list.
|
||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
Try
|
||||
If disposing AndAlso components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
Finally
|
||||
MyBase.Dispose(disposing)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'Required by the Windows Form Designer
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'NOTE: The following procedure is required by the Windows Form Designer
|
||||
'It can be modified using the Windows Form Designer.
|
||||
'Do not modify it using the code editor.
|
||||
<System.Diagnostics.DebuggerStepThrough()> _
|
||||
Private Sub InitializeComponent()
|
||||
Me.grpProcess = New System.Windows.Forms.GroupBox()
|
||||
Me.txtArguments = New System.Windows.Forms.TextBox()
|
||||
Me.lblArguments = New System.Windows.Forms.Label()
|
||||
Me.btnProcessBrowse = New System.Windows.Forms.Button()
|
||||
Me.txtName = New System.Windows.Forms.TextBox()
|
||||
Me.txtPath = New System.Windows.Forms.TextBox()
|
||||
Me.lblProcess = New System.Windows.Forms.Label()
|
||||
Me.lblName = New System.Windows.Forms.Label()
|
||||
Me.btnClose = New System.Windows.Forms.Button()
|
||||
Me.btnDelete = New System.Windows.Forms.Button()
|
||||
Me.btnAdd = New System.Windows.Forms.Button()
|
||||
Me.lstProcesses = New System.Windows.Forms.ListBox()
|
||||
Me.txtID = New System.Windows.Forms.TextBox()
|
||||
Me.btnCancel = New System.Windows.Forms.Button()
|
||||
Me.btnSave = New System.Windows.Forms.Button()
|
||||
Me.chkKillProcess = New System.Windows.Forms.CheckBox()
|
||||
Me.grpProcess.SuspendLayout()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'grpProcess
|
||||
'
|
||||
Me.grpProcess.Controls.Add(Me.chkKillProcess)
|
||||
Me.grpProcess.Controls.Add(Me.txtArguments)
|
||||
Me.grpProcess.Controls.Add(Me.lblArguments)
|
||||
Me.grpProcess.Controls.Add(Me.btnProcessBrowse)
|
||||
Me.grpProcess.Controls.Add(Me.txtName)
|
||||
Me.grpProcess.Controls.Add(Me.txtPath)
|
||||
Me.grpProcess.Controls.Add(Me.lblProcess)
|
||||
Me.grpProcess.Controls.Add(Me.lblName)
|
||||
Me.grpProcess.Location = New System.Drawing.Point(238, 12)
|
||||
Me.grpProcess.Name = "grpProcess"
|
||||
Me.grpProcess.Size = New System.Drawing.Size(334, 120)
|
||||
Me.grpProcess.TabIndex = 11
|
||||
Me.grpProcess.TabStop = False
|
||||
Me.grpProcess.Text = "Configuration"
|
||||
'
|
||||
'txtArguments
|
||||
'
|
||||
Me.txtArguments.Location = New System.Drawing.Point(72, 70)
|
||||
Me.txtArguments.Name = "txtArguments"
|
||||
Me.txtArguments.Size = New System.Drawing.Size(256, 20)
|
||||
Me.txtArguments.TabIndex = 5
|
||||
'
|
||||
'lblArguments
|
||||
'
|
||||
Me.lblArguments.AutoSize = True
|
||||
Me.lblArguments.Location = New System.Drawing.Point(6, 73)
|
||||
Me.lblArguments.Name = "lblArguments"
|
||||
Me.lblArguments.Size = New System.Drawing.Size(60, 13)
|
||||
Me.lblArguments.TabIndex = 4
|
||||
Me.lblArguments.Text = "Arguments:"
|
||||
'
|
||||
'btnProcessBrowse
|
||||
'
|
||||
Me.btnProcessBrowse.Location = New System.Drawing.Point(298, 45)
|
||||
Me.btnProcessBrowse.Name = "btnProcessBrowse"
|
||||
Me.btnProcessBrowse.Size = New System.Drawing.Size(30, 20)
|
||||
Me.btnProcessBrowse.TabIndex = 3
|
||||
Me.btnProcessBrowse.Text = "..."
|
||||
Me.btnProcessBrowse.UseVisualStyleBackColor = True
|
||||
'
|
||||
'txtName
|
||||
'
|
||||
Me.txtName.Location = New System.Drawing.Point(72, 19)
|
||||
Me.txtName.Name = "txtName"
|
||||
Me.txtName.Size = New System.Drawing.Size(256, 20)
|
||||
Me.txtName.TabIndex = 1
|
||||
'
|
||||
'txtPath
|
||||
'
|
||||
Me.txtPath.Location = New System.Drawing.Point(72, 45)
|
||||
Me.txtPath.Name = "txtPath"
|
||||
Me.txtPath.Size = New System.Drawing.Size(220, 20)
|
||||
Me.txtPath.TabIndex = 2
|
||||
'
|
||||
'lblProcess
|
||||
'
|
||||
Me.lblProcess.AutoSize = True
|
||||
Me.lblProcess.Location = New System.Drawing.Point(6, 48)
|
||||
Me.lblProcess.Name = "lblProcess"
|
||||
Me.lblProcess.Size = New System.Drawing.Size(48, 13)
|
||||
Me.lblProcess.TabIndex = 1
|
||||
Me.lblProcess.Text = "Process:"
|
||||
'
|
||||
'lblName
|
||||
'
|
||||
Me.lblName.AutoSize = True
|
||||
Me.lblName.Location = New System.Drawing.Point(6, 22)
|
||||
Me.lblName.Name = "lblName"
|
||||
Me.lblName.Size = New System.Drawing.Size(38, 13)
|
||||
Me.lblName.TabIndex = 0
|
||||
Me.lblName.Text = "Name:"
|
||||
'
|
||||
'btnClose
|
||||
'
|
||||
Me.btnClose.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.btnClose.Location = New System.Drawing.Point(497, 226)
|
||||
Me.btnClose.Name = "btnClose"
|
||||
Me.btnClose.Size = New System.Drawing.Size(75, 23)
|
||||
Me.btnClose.TabIndex = 14
|
||||
Me.btnClose.Text = "C&lose"
|
||||
Me.btnClose.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btnDelete
|
||||
'
|
||||
Me.btnDelete.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
|
||||
Me.btnDelete.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.btnDelete.Location = New System.Drawing.Point(48, 226)
|
||||
Me.btnDelete.Name = "btnDelete"
|
||||
Me.btnDelete.Size = New System.Drawing.Size(30, 23)
|
||||
Me.btnDelete.TabIndex = 10
|
||||
Me.btnDelete.Text = "-"
|
||||
Me.btnDelete.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btnAdd
|
||||
'
|
||||
Me.btnAdd.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
|
||||
Me.btnAdd.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.btnAdd.Location = New System.Drawing.Point(12, 226)
|
||||
Me.btnAdd.Name = "btnAdd"
|
||||
Me.btnAdd.Size = New System.Drawing.Size(30, 23)
|
||||
Me.btnAdd.TabIndex = 9
|
||||
Me.btnAdd.Text = "+"
|
||||
Me.btnAdd.UseVisualStyleBackColor = True
|
||||
'
|
||||
'lstProcesses
|
||||
'
|
||||
Me.lstProcesses.FormattingEnabled = True
|
||||
Me.lstProcesses.Location = New System.Drawing.Point(12, 12)
|
||||
Me.lstProcesses.Name = "lstProcesses"
|
||||
Me.lstProcesses.Size = New System.Drawing.Size(220, 212)
|
||||
Me.lstProcesses.Sorted = True
|
||||
Me.lstProcesses.TabIndex = 7
|
||||
'
|
||||
'txtID
|
||||
'
|
||||
Me.txtID.Enabled = False
|
||||
Me.txtID.Location = New System.Drawing.Point(374, 150)
|
||||
Me.txtID.Name = "txtID"
|
||||
Me.txtID.Size = New System.Drawing.Size(33, 20)
|
||||
Me.txtID.TabIndex = 8
|
||||
Me.txtID.TabStop = False
|
||||
Me.txtID.Visible = False
|
||||
'
|
||||
'btnCancel
|
||||
'
|
||||
Me.btnCancel.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.btnCancel.Location = New System.Drawing.Point(494, 149)
|
||||
Me.btnCancel.Name = "btnCancel"
|
||||
Me.btnCancel.Size = New System.Drawing.Size(75, 23)
|
||||
Me.btnCancel.TabIndex = 13
|
||||
Me.btnCancel.Text = "&Cancel"
|
||||
Me.btnCancel.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btnSave
|
||||
'
|
||||
Me.btnSave.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.btnSave.Location = New System.Drawing.Point(413, 149)
|
||||
Me.btnSave.Name = "btnSave"
|
||||
Me.btnSave.Size = New System.Drawing.Size(75, 23)
|
||||
Me.btnSave.TabIndex = 12
|
||||
Me.btnSave.Text = "&Save"
|
||||
Me.btnSave.UseVisualStyleBackColor = True
|
||||
'
|
||||
'chkKillProcess
|
||||
'
|
||||
Me.chkKillProcess.AutoSize = True
|
||||
Me.chkKillProcess.Location = New System.Drawing.Point(72, 96)
|
||||
Me.chkKillProcess.Name = "chkKillProcess"
|
||||
Me.chkKillProcess.Size = New System.Drawing.Size(184, 17)
|
||||
Me.chkKillProcess.TabIndex = 6
|
||||
Me.chkKillProcess.Text = "Kill process when game is closed."
|
||||
Me.chkKillProcess.UseVisualStyleBackColor = True
|
||||
'
|
||||
'frmProcessManager
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(584, 261)
|
||||
Me.Controls.Add(Me.grpProcess)
|
||||
Me.Controls.Add(Me.btnClose)
|
||||
Me.Controls.Add(Me.btnDelete)
|
||||
Me.Controls.Add(Me.btnAdd)
|
||||
Me.Controls.Add(Me.lstProcesses)
|
||||
Me.Controls.Add(Me.txtID)
|
||||
Me.Controls.Add(Me.btnCancel)
|
||||
Me.Controls.Add(Me.btnSave)
|
||||
Me.MaximizeBox = False
|
||||
Me.MinimizeBox = False
|
||||
Me.Name = "frmProcessManager"
|
||||
Me.ShowIcon = False
|
||||
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
|
||||
Me.Text = "Process Manager"
|
||||
Me.grpProcess.ResumeLayout(False)
|
||||
Me.grpProcess.PerformLayout()
|
||||
Me.ResumeLayout(False)
|
||||
Me.PerformLayout()
|
||||
|
||||
End Sub
|
||||
|
||||
Friend WithEvents grpProcess As GroupBox
|
||||
Friend WithEvents txtArguments As TextBox
|
||||
Friend WithEvents lblArguments As Label
|
||||
Friend WithEvents btnProcessBrowse As Button
|
||||
Friend WithEvents txtName As TextBox
|
||||
Friend WithEvents txtPath As TextBox
|
||||
Friend WithEvents lblProcess As Label
|
||||
Friend WithEvents lblName As Label
|
||||
Friend WithEvents btnClose As Button
|
||||
Friend WithEvents btnDelete As Button
|
||||
Friend WithEvents btnAdd As Button
|
||||
Friend WithEvents lstProcesses As ListBox
|
||||
Friend WithEvents txtID As TextBox
|
||||
Friend WithEvents btnCancel As Button
|
||||
Friend WithEvents btnSave As Button
|
||||
Friend WithEvents chkKillProcess As CheckBox
|
||||
End Class
|
||||
@@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
||||
@@ -0,0 +1,371 @@
|
||||
Imports GBM.My.Resources
|
||||
Imports System.IO
|
||||
|
||||
Public Class frmProcessManager
|
||||
Dim hshProcessData As Hashtable
|
||||
Private bIsDirty As Boolean = False
|
||||
Private bIsLoading As Boolean = False
|
||||
Private oCurrentProcess As clsProcess
|
||||
|
||||
Private Property IsDirty As Boolean
|
||||
Get
|
||||
Return bIsDirty
|
||||
End Get
|
||||
Set(value As Boolean)
|
||||
bIsDirty = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Private Property IsLoading As Boolean
|
||||
Get
|
||||
Return bIsLoading
|
||||
End Get
|
||||
Set(value As Boolean)
|
||||
bIsLoading = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Private Enum eModes As Integer
|
||||
View = 1
|
||||
Edit = 2
|
||||
Add = 3
|
||||
Disabled = 4
|
||||
End Enum
|
||||
|
||||
Private eCurrentMode As eModes = eModes.Disabled
|
||||
|
||||
Private Property ProcessData As Hashtable
|
||||
Get
|
||||
Return hshProcessData
|
||||
End Get
|
||||
Set(value As Hashtable)
|
||||
hshProcessData = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Private Sub ProcessBrowse()
|
||||
Dim sDefaultFolder As String = Environment.GetFolderPath(Environment.SpecialFolder.Desktop)
|
||||
Dim sCurrentPath As String = txtPath.Text
|
||||
Dim sNewPath As String
|
||||
|
||||
If sCurrentPath <> String.Empty Then
|
||||
sCurrentPath = Path.GetDirectoryName(txtPath.Text)
|
||||
If Directory.Exists(sCurrentPath) Then
|
||||
sDefaultFolder = sCurrentPath
|
||||
End If
|
||||
End If
|
||||
|
||||
sNewPath = mgrCommon.OpenFileBrowser("PM_Process", frmProcessManager_ChooseProcess, "exe",
|
||||
frmProcessManager_Executable, sDefaultFolder, False, True)
|
||||
|
||||
If sNewPath <> String.Empty Then
|
||||
txtPath.Text = sNewPath
|
||||
End If
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub LoadData()
|
||||
ProcessData = mgrProcess.ReadProcesses
|
||||
lstProcesses.Items.Clear()
|
||||
FormatAndFillList()
|
||||
End Sub
|
||||
|
||||
Private Function HandleDirty() As MsgBoxResult
|
||||
Dim oResult As MsgBoxResult
|
||||
|
||||
oResult = mgrCommon.ShowMessage(App_ConfirmDirty, MsgBoxStyle.YesNoCancel)
|
||||
|
||||
Select Case oResult
|
||||
Case MsgBoxResult.Yes
|
||||
IsDirty = False
|
||||
Case MsgBoxResult.No
|
||||
IsDirty = False
|
||||
Case MsgBoxResult.Cancel
|
||||
'No Change
|
||||
End Select
|
||||
|
||||
Return oResult
|
||||
|
||||
End Function
|
||||
|
||||
Private Sub FormatAndFillList()
|
||||
IsLoading = True
|
||||
|
||||
For Each oProcess As clsProcess In ProcessData.Values
|
||||
lstProcesses.Items.Add(oProcess.Name)
|
||||
Next
|
||||
|
||||
IsLoading = False
|
||||
End Sub
|
||||
|
||||
Private Sub FillData()
|
||||
IsLoading = True
|
||||
|
||||
oCurrentProcess = DirectCast(ProcessData(lstProcesses.SelectedItems(0).ToString), clsProcess)
|
||||
|
||||
txtID.Text = oCurrentProcess.ID
|
||||
txtName.Text = oCurrentProcess.Name
|
||||
txtPath.Text = oCurrentProcess.Path
|
||||
txtArguments.Text = oCurrentProcess.Args
|
||||
chkKillProcess.Checked = oCurrentProcess.Kill
|
||||
|
||||
IsLoading = False
|
||||
End Sub
|
||||
|
||||
Private Sub DirtyCheck_ValueChanged(sender As Object, e As EventArgs)
|
||||
If Not IsLoading Then
|
||||
IsDirty = True
|
||||
If Not eCurrentMode = eModes.Add Then EditProcess()
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub AssignDirtyHandlers(ByVal oCtls As GroupBox.ControlCollection)
|
||||
For Each ctl As Control In oCtls
|
||||
If TypeOf ctl Is TextBox Then
|
||||
AddHandler DirectCast(ctl, TextBox).TextChanged, AddressOf DirtyCheck_ValueChanged
|
||||
End If
|
||||
Next
|
||||
End Sub
|
||||
|
||||
Private Sub WipeControls(ByVal oCtls As GroupBox.ControlCollection)
|
||||
For Each ctl As Control In oCtls
|
||||
If TypeOf ctl Is TextBox Then
|
||||
DirectCast(ctl, TextBox).Text = String.Empty
|
||||
End If
|
||||
Next
|
||||
txtID.Text = String.Empty
|
||||
End Sub
|
||||
|
||||
Private Sub ModeChange()
|
||||
IsLoading = True
|
||||
|
||||
Select Case eCurrentMode
|
||||
Case eModes.Add
|
||||
grpProcess.Enabled = True
|
||||
WipeControls(grpProcess.Controls)
|
||||
btnSave.Enabled = True
|
||||
btnCancel.Enabled = True
|
||||
btnAdd.Enabled = False
|
||||
btnDelete.Enabled = False
|
||||
lstProcesses.Enabled = False
|
||||
chkKillProcess.Checked = True
|
||||
Case eModes.Edit
|
||||
lstProcesses.Enabled = False
|
||||
grpProcess.Enabled = True
|
||||
btnSave.Enabled = True
|
||||
btnCancel.Enabled = True
|
||||
btnAdd.Enabled = False
|
||||
btnDelete.Enabled = False
|
||||
Case eModes.View
|
||||
lstProcesses.Enabled = True
|
||||
grpProcess.Enabled = True
|
||||
btnSave.Enabled = False
|
||||
btnCancel.Enabled = False
|
||||
btnAdd.Enabled = True
|
||||
btnDelete.Enabled = True
|
||||
Case eModes.Disabled
|
||||
lstProcesses.Enabled = True
|
||||
WipeControls(grpProcess.Controls)
|
||||
grpProcess.Enabled = False
|
||||
btnSave.Enabled = False
|
||||
btnCancel.Enabled = False
|
||||
btnAdd.Enabled = True
|
||||
btnDelete.Enabled = True
|
||||
End Select
|
||||
|
||||
IsLoading = False
|
||||
End Sub
|
||||
|
||||
Private Sub EditProcess()
|
||||
eCurrentMode = eModes.Edit
|
||||
ModeChange()
|
||||
End Sub
|
||||
|
||||
Private Sub AddProcess()
|
||||
eCurrentMode = eModes.Add
|
||||
ModeChange()
|
||||
txtName.Focus()
|
||||
End Sub
|
||||
|
||||
Private Sub CancelEdit()
|
||||
If bIsDirty Then
|
||||
Select Case HandleDirty()
|
||||
Case MsgBoxResult.Yes
|
||||
SaveProcess()
|
||||
Case MsgBoxResult.No
|
||||
If lstProcesses.SelectedItems.Count > 0 Then
|
||||
eCurrentMode = eModes.View
|
||||
ModeChange()
|
||||
FillData()
|
||||
lstProcesses.Focus()
|
||||
Else
|
||||
eCurrentMode = eModes.Disabled
|
||||
ModeChange()
|
||||
End If
|
||||
Case MsgBoxResult.Cancel
|
||||
'Do Nothing
|
||||
End Select
|
||||
Else
|
||||
If lstProcesses.SelectedItems.Count > 0 Then
|
||||
eCurrentMode = eModes.View
|
||||
ModeChange()
|
||||
FillData()
|
||||
lstProcesses.Focus()
|
||||
Else
|
||||
eCurrentMode = eModes.Disabled
|
||||
ModeChange()
|
||||
End If
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub SaveProcess()
|
||||
Dim oProcess As New clsProcess
|
||||
Dim bSuccess As Boolean = False
|
||||
|
||||
If txtID.Text <> String.Empty Then
|
||||
oProcess.ID = txtID.Text
|
||||
End If
|
||||
oProcess.Name = txtName.Text
|
||||
oProcess.Path = txtPath.Text
|
||||
oProcess.Args = txtArguments.Text
|
||||
oProcess.Kill = chkKillProcess.Checked
|
||||
|
||||
Select Case eCurrentMode
|
||||
Case eModes.Add
|
||||
If CoreValidatation(oProcess) Then
|
||||
bSuccess = True
|
||||
mgrProcess.DoProcessAdd(oProcess)
|
||||
eCurrentMode = eModes.View
|
||||
End If
|
||||
Case eModes.Edit
|
||||
If CoreValidatation(oProcess) Then
|
||||
bSuccess = True
|
||||
mgrProcess.DoProcessUpdate(oProcess)
|
||||
eCurrentMode = eModes.View
|
||||
End If
|
||||
End Select
|
||||
|
||||
If bSuccess Then
|
||||
IsDirty = False
|
||||
LoadData()
|
||||
ModeChange()
|
||||
If eCurrentMode = eModes.View Then lstProcesses.SelectedIndex = lstProcesses.Items.IndexOf(oProcess.Name)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub DeleteProcess()
|
||||
Dim oProcess As clsProcess
|
||||
|
||||
If lstProcesses.SelectedItems.Count > 0 Then
|
||||
oProcess = DirectCast(ProcessData(lstProcesses.SelectedItems(0).ToString), clsProcess)
|
||||
|
||||
If mgrCommon.ShowMessage(frmProcessManager_ConfirmDelete, oProcess.Name, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||
mgrProcess.DoProcessDelete(oProcess.ID)
|
||||
LoadData()
|
||||
eCurrentMode = eModes.Disabled
|
||||
ModeChange()
|
||||
End If
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub SwitchProcess()
|
||||
If lstProcesses.SelectedItems.Count > 0 Then
|
||||
eCurrentMode = eModes.View
|
||||
FillData()
|
||||
ModeChange()
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Function CoreValidatation(ByVal oProcess As clsProcess) As Boolean
|
||||
If txtName.Text.Trim = String.Empty Then
|
||||
mgrCommon.ShowMessage(frmProcessManager_ErrorValidName, MsgBoxStyle.Exclamation)
|
||||
txtName.Focus()
|
||||
Return False
|
||||
End If
|
||||
|
||||
If txtPath.Text.Trim = String.Empty Then
|
||||
mgrCommon.ShowMessage(frmProcessManager_ErrorValidPath, MsgBoxStyle.Exclamation)
|
||||
txtPath.Focus()
|
||||
Return False
|
||||
Else
|
||||
If Not File.Exists(txtPath.Text.Trim) Then
|
||||
mgrCommon.ShowMessage(frmProcessManager_ErrorPathNotFound, MsgBoxStyle.Exclamation)
|
||||
txtPath.Focus()
|
||||
Return False
|
||||
End If
|
||||
End If
|
||||
|
||||
If mgrProcess.DoCheckDuplicate(oProcess.Name, oProcess.ID) Then
|
||||
mgrCommon.ShowMessage(frmProcessManager_ErrorDupe, MsgBoxStyle.Exclamation)
|
||||
txtName.Focus()
|
||||
Return False
|
||||
End If
|
||||
|
||||
Return True
|
||||
End Function
|
||||
|
||||
Private Sub SetForm()
|
||||
'Set Form Name
|
||||
Me.Text = frmProcessManager_FormName
|
||||
|
||||
'Set Form Text
|
||||
btnCancel.Text = frmProcessManager_btnCancel
|
||||
btnSave.Text = frmProcessManager_btnSave
|
||||
grpProcess.Text = frmProcessManager_grpProcess
|
||||
btnProcessBrowse.Text = frmProcessManager_btnProcessBrowse
|
||||
lblProcess.Text = frmProcessManager_lblPath
|
||||
lblName.Text = frmProcessManager_lblName
|
||||
btnClose.Text = frmProcessManager_btnClose
|
||||
btnDelete.Text = frmProcessManager_btnDelete
|
||||
btnAdd.Text = frmProcessManager_btnAdd
|
||||
chkKillProcess.Text = frmProcessManager_chkKillProcess
|
||||
End Sub
|
||||
|
||||
Private Sub frmProcessManager_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
SetForm()
|
||||
LoadData()
|
||||
ModeChange()
|
||||
AssignDirtyHandlers(grpProcess.Controls)
|
||||
End Sub
|
||||
|
||||
Private Sub lstProcesses_SelectedIndexChanged(sender As Object, e As EventArgs) Handles lstProcesses.SelectedIndexChanged
|
||||
SwitchProcess()
|
||||
End Sub
|
||||
|
||||
Private Sub btnAdd_Click(sender As Object, e As EventArgs) Handles btnAdd.Click
|
||||
AddProcess()
|
||||
End Sub
|
||||
|
||||
Private Sub btnDelete_Click(sender As Object, e As EventArgs) Handles btnDelete.Click
|
||||
DeleteProcess()
|
||||
End Sub
|
||||
|
||||
Private Sub btnSave_Click(sender As Object, e As EventArgs) Handles btnSave.Click
|
||||
SaveProcess()
|
||||
End Sub
|
||||
|
||||
Private Sub btnCancel_Click(sender As Object, e As EventArgs) Handles btnCancel.Click
|
||||
CancelEdit()
|
||||
End Sub
|
||||
|
||||
Private Sub btnClose_Click(sender As Object, e As EventArgs) Handles btnClose.Click
|
||||
Me.Close()
|
||||
End Sub
|
||||
|
||||
Private Sub btnPathBrowse_Click(sender As Object, e As EventArgs) Handles btnProcessBrowse.Click
|
||||
ProcessBrowse()
|
||||
End Sub
|
||||
|
||||
Private Sub frmProcessManager_FormClosing(sender As Object, e As FormClosingEventArgs) Handles MyBase.FormClosing
|
||||
If bIsDirty Then
|
||||
Select Case HandleDirty()
|
||||
Case MsgBoxResult.Yes
|
||||
SaveProcess()
|
||||
Case MsgBoxResult.No
|
||||
'Do Nothing
|
||||
Case MsgBoxResult.Cancel
|
||||
e.Cancel = True
|
||||
End Select
|
||||
End If
|
||||
End Sub
|
||||
End Class
|
||||
Reference in New Issue
Block a user