Initial Commit
This commit is contained in:
@@ -0,0 +1,55 @@
|
|||||||
|
; Script generated by the Inno Setup Script Wizard.
|
||||||
|
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||||
|
|
||||||
|
#define MyAppName "Nextest Utilization Tracker"
|
||||||
|
#define MyAppVersion "2.1.0.0"
|
||||||
|
#define MyAppPublisher "Lattice Semiconductor"
|
||||||
|
#define MyAppURL "www.latticesemi.com"
|
||||||
|
#define MyAppExeName "nxtuitrack.exe"
|
||||||
|
|
||||||
|
[Setup]
|
||||||
|
; NOTE: The value of AppId uniquely identifies this application.
|
||||||
|
; Do not use the same AppId value in installers for other applications.
|
||||||
|
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
||||||
|
AppId={{4D81E2E3-5886-4342-8AF1-D20355752124}
|
||||||
|
AppName={#MyAppName}
|
||||||
|
AppVersion={#MyAppVersion}
|
||||||
|
;AppVerName={#MyAppName} {#MyAppVersion}
|
||||||
|
AppPublisher={#MyAppPublisher}
|
||||||
|
AppPublisherURL={#MyAppURL}
|
||||||
|
AppSupportURL={#MyAppURL}
|
||||||
|
AppUpdatesURL={#MyAppURL}
|
||||||
|
DefaultDirName={pf}\{#MyAppName}
|
||||||
|
DefaultGroupName={#MyAppName}
|
||||||
|
OutputBaseFilename=nxtuitrack-setup
|
||||||
|
Compression=lzma
|
||||||
|
SolidCompression=yes
|
||||||
|
PrivilegesRequired=admin
|
||||||
|
|
||||||
|
[Registry]
|
||||||
|
Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "nxttrackui"; ValueData: "{app}\{#MyAppExeName}"
|
||||||
|
Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "SystemService"; ValueData: "{win}\systemservice.exe"
|
||||||
|
Root: HKLM; Subkey: "SOFTWARE\Lattice\Nextest Utilization Tracker\"; ValueType: string; ValueName: "InstallPath"; ValueData: "{app}"
|
||||||
|
;Root: HKLM; Subkey: "SOFTWARE\Lattice\Nextest Utilization Tracker\"; ValueType: string; ValueName: "app1"; ValueData: "ui.exe,none,Nextest UI"
|
||||||
|
;Root: HKLM; Subkey: "SOFTWARE\Lattice\Nextest Utilization Tracker\"; ValueType: string; ValueName: "app2"; ValueData: "lotcontrolform.exe,C:\nextest\LotControlForm\Release\,Lot Control Form"
|
||||||
|
|
||||||
|
[Languages]
|
||||||
|
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||||
|
|
||||||
|
[Tasks]
|
||||||
|
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
||||||
|
|
||||||
|
[Files]
|
||||||
|
Source: "..\systemservice\bin\Debug\systemservice.exe"; DestDir: "{win}"; Flags: ignoreversion
|
||||||
|
Source: "..\nxtuitracker\bin\Debug\nxtuitrack.exe"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
Source: "uninstall.bat"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
||||||
|
|
||||||
|
[Icons]
|
||||||
|
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
||||||
|
Name: "{group}\Uninstall"; Filename: "{app}\uninstall.bat"
|
||||||
|
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
||||||
|
|
||||||
|
[Run]
|
||||||
|
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
||||||
|
;Filename: "{win}\SystemService.exe"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,2 @@
|
|||||||
|
taskkill /f /im nxtuitrack.exe /im systemservice.exe
|
||||||
|
unins000.exe
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Express 2013 for Windows Desktop
|
||||||
|
VisualStudioVersion = 12.0.21005.1
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "nxtuitracker", "nxtuitracker\nxtuitracker.vbproj", "{8D6B0CA5-5FE3-4974-9B53-537EEC8FF75D}"
|
||||||
|
EndProject
|
||||||
|
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "systemservice", "systemservice\systemservice.vbproj", "{01556481-F900-495D-8FE9-4E6E90250C9C}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{8D6B0CA5-5FE3-4974-9B53-537EEC8FF75D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{8D6B0CA5-5FE3-4974-9B53-537EEC8FF75D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{8D6B0CA5-5FE3-4974-9B53-537EEC8FF75D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{8D6B0CA5-5FE3-4974-9B53-537EEC8FF75D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{01556481-F900-495D-8FE9-4E6E90250C9C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{01556481-F900-495D-8FE9-4E6E90250C9C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{01556481-F900-495D-8FE9-4E6E90250C9C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{01556481-F900-495D-8FE9-4E6E90250C9C}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
Binary file not shown.
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
|
||||||
|
</configuration>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
Generated
+330
@@ -0,0 +1,330 @@
|
|||||||
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||||
|
Partial Class Form1
|
||||||
|
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.components = New System.ComponentModel.Container()
|
||||||
|
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Form1))
|
||||||
|
Me.gb_status = New System.Windows.Forms.GroupBox()
|
||||||
|
Me.lbl_status = New System.Windows.Forms.Label()
|
||||||
|
Me.lbl_instruction = New System.Windows.Forms.Label()
|
||||||
|
Me.gb_runtime = New System.Windows.Forms.GroupBox()
|
||||||
|
Me.llbl_view_logs = New System.Windows.Forms.LinkLabel()
|
||||||
|
Me.lbl_indicator = New System.Windows.Forms.Label()
|
||||||
|
Me.lbl_runtime = New System.Windows.Forms.Label()
|
||||||
|
Me.tmr_runtime = New System.Windows.Forms.Timer(Me.components)
|
||||||
|
Me.cmd_start = New System.Windows.Forms.Button()
|
||||||
|
Me.bw_run = New System.ComponentModel.BackgroundWorker()
|
||||||
|
Me.ss_bar = New System.Windows.Forms.StatusStrip()
|
||||||
|
Me.strip_ui = New System.Windows.Forms.ToolStripStatusLabel()
|
||||||
|
Me.strip_version = New System.Windows.Forms.ToolStripStatusLabel()
|
||||||
|
Me.menu_options = New System.Windows.Forms.ToolStripDropDownButton()
|
||||||
|
Me.menu_set_var = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.menu_change_ui = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.ToolStripSeparator1 = New System.Windows.Forms.ToolStripSeparator()
|
||||||
|
Me.menu_turn_off = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.tmr_eventlistener = New System.Windows.Forms.Timer(Me.components)
|
||||||
|
Me.gb_user = New System.Windows.Forms.GroupBox()
|
||||||
|
Me.cmb_group = New System.Windows.Forms.ComboBox()
|
||||||
|
Me.txt_user = New System.Windows.Forms.TextBox()
|
||||||
|
Me.menu_env_var = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
|
Me.sep1 = New System.Windows.Forms.ToolStripSeparator()
|
||||||
|
Me.tooltip = New System.Windows.Forms.ToolTip(Me.components)
|
||||||
|
Me.gb_status.SuspendLayout()
|
||||||
|
Me.gb_runtime.SuspendLayout()
|
||||||
|
Me.ss_bar.SuspendLayout()
|
||||||
|
Me.gb_user.SuspendLayout()
|
||||||
|
Me.SuspendLayout()
|
||||||
|
'
|
||||||
|
'gb_status
|
||||||
|
'
|
||||||
|
Me.gb_status.Controls.Add(Me.lbl_status)
|
||||||
|
Me.gb_status.Location = New System.Drawing.Point(7, 29)
|
||||||
|
Me.gb_status.Name = "gb_status"
|
||||||
|
Me.gb_status.Size = New System.Drawing.Size(241, 76)
|
||||||
|
Me.gb_status.TabIndex = 0
|
||||||
|
Me.gb_status.TabStop = False
|
||||||
|
Me.gb_status.Text = "Status"
|
||||||
|
'
|
||||||
|
'lbl_status
|
||||||
|
'
|
||||||
|
Me.lbl_status.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
||||||
|
Or System.Windows.Forms.AnchorStyles.Left) _
|
||||||
|
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.lbl_status.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer))
|
||||||
|
Me.lbl_status.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.lbl_status.Font = New System.Drawing.Font("Tahoma", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.lbl_status.Location = New System.Drawing.Point(11, 23)
|
||||||
|
Me.lbl_status.Name = "lbl_status"
|
||||||
|
Me.lbl_status.Size = New System.Drawing.Size(219, 37)
|
||||||
|
Me.lbl_status.TabIndex = 0
|
||||||
|
Me.lbl_status.Text = "IDLE"
|
||||||
|
Me.lbl_status.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
|
||||||
|
'
|
||||||
|
'lbl_instruction
|
||||||
|
'
|
||||||
|
Me.lbl_instruction.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.lbl_instruction.Location = New System.Drawing.Point(9, 9)
|
||||||
|
Me.lbl_instruction.Name = "lbl_instruction"
|
||||||
|
Me.lbl_instruction.Size = New System.Drawing.Size(239, 17)
|
||||||
|
Me.lbl_instruction.TabIndex = 1
|
||||||
|
Me.lbl_instruction.Text = "Please enter the required information to start the UI"
|
||||||
|
'
|
||||||
|
'gb_runtime
|
||||||
|
'
|
||||||
|
Me.gb_runtime.Controls.Add(Me.llbl_view_logs)
|
||||||
|
Me.gb_runtime.Controls.Add(Me.lbl_indicator)
|
||||||
|
Me.gb_runtime.Controls.Add(Me.lbl_runtime)
|
||||||
|
Me.gb_runtime.Location = New System.Drawing.Point(7, 111)
|
||||||
|
Me.gb_runtime.Name = "gb_runtime"
|
||||||
|
Me.gb_runtime.Size = New System.Drawing.Size(241, 105)
|
||||||
|
Me.gb_runtime.TabIndex = 2
|
||||||
|
Me.gb_runtime.TabStop = False
|
||||||
|
Me.gb_runtime.Text = "Run Time"
|
||||||
|
'
|
||||||
|
'llbl_view_logs
|
||||||
|
'
|
||||||
|
Me.llbl_view_logs.Anchor = System.Windows.Forms.AnchorStyles.Right
|
||||||
|
Me.llbl_view_logs.AutoSize = True
|
||||||
|
Me.llbl_view_logs.Location = New System.Drawing.Point(176, 82)
|
||||||
|
Me.llbl_view_logs.Name = "llbl_view_logs"
|
||||||
|
Me.llbl_view_logs.Size = New System.Drawing.Size(54, 13)
|
||||||
|
Me.llbl_view_logs.TabIndex = 5
|
||||||
|
Me.llbl_view_logs.TabStop = True
|
||||||
|
Me.llbl_view_logs.Text = "View Logs"
|
||||||
|
'
|
||||||
|
'lbl_indicator
|
||||||
|
'
|
||||||
|
Me.lbl_indicator.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
||||||
|
Or System.Windows.Forms.AnchorStyles.Left) _
|
||||||
|
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.lbl_indicator.BackColor = System.Drawing.SystemColors.ButtonFace
|
||||||
|
Me.lbl_indicator.Location = New System.Drawing.Point(35, 54)
|
||||||
|
Me.lbl_indicator.Name = "lbl_indicator"
|
||||||
|
Me.lbl_indicator.Size = New System.Drawing.Size(167, 15)
|
||||||
|
Me.lbl_indicator.TabIndex = 4
|
||||||
|
Me.lbl_indicator.Text = "Days Hours Mins Secs"
|
||||||
|
'
|
||||||
|
'lbl_runtime
|
||||||
|
'
|
||||||
|
Me.lbl_runtime.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
||||||
|
Or System.Windows.Forms.AnchorStyles.Left) _
|
||||||
|
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.lbl_runtime.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer))
|
||||||
|
Me.lbl_runtime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.lbl_runtime.Font = New System.Drawing.Font("Tahoma", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.lbl_runtime.Location = New System.Drawing.Point(11, 23)
|
||||||
|
Me.lbl_runtime.Name = "lbl_runtime"
|
||||||
|
Me.lbl_runtime.Size = New System.Drawing.Size(219, 53)
|
||||||
|
Me.lbl_runtime.TabIndex = 1
|
||||||
|
Me.lbl_runtime.Text = "00:00:00:00"
|
||||||
|
Me.lbl_runtime.TextAlign = System.Drawing.ContentAlignment.TopCenter
|
||||||
|
'
|
||||||
|
'tmr_runtime
|
||||||
|
'
|
||||||
|
Me.tmr_runtime.Interval = 1000
|
||||||
|
'
|
||||||
|
'cmd_start
|
||||||
|
'
|
||||||
|
Me.cmd_start.BackColor = System.Drawing.SystemColors.Control
|
||||||
|
Me.cmd_start.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.cmd_start.Location = New System.Drawing.Point(7, 325)
|
||||||
|
Me.cmd_start.Name = "cmd_start"
|
||||||
|
Me.cmd_start.Size = New System.Drawing.Size(241, 40)
|
||||||
|
Me.cmd_start.TabIndex = 4
|
||||||
|
Me.cmd_start.Text = "Start Nextest UI"
|
||||||
|
Me.cmd_start.UseVisualStyleBackColor = False
|
||||||
|
'
|
||||||
|
'bw_run
|
||||||
|
'
|
||||||
|
'
|
||||||
|
'ss_bar
|
||||||
|
'
|
||||||
|
Me.ss_bar.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.strip_ui, Me.strip_version, Me.menu_options})
|
||||||
|
Me.ss_bar.Location = New System.Drawing.Point(0, 372)
|
||||||
|
Me.ss_bar.Name = "ss_bar"
|
||||||
|
Me.ss_bar.Size = New System.Drawing.Size(254, 22)
|
||||||
|
Me.ss_bar.SizingGrip = False
|
||||||
|
Me.ss_bar.TabIndex = 4
|
||||||
|
Me.ss_bar.Text = "StatusStrip1"
|
||||||
|
'
|
||||||
|
'strip_ui
|
||||||
|
'
|
||||||
|
Me.strip_ui.AutoSize = False
|
||||||
|
Me.strip_ui.Name = "strip_ui"
|
||||||
|
Me.strip_ui.Size = New System.Drawing.Size(130, 17)
|
||||||
|
Me.strip_ui.Text = "UI Version: "
|
||||||
|
Me.strip_ui.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||||
|
'
|
||||||
|
'strip_version
|
||||||
|
'
|
||||||
|
Me.strip_version.AutoSize = False
|
||||||
|
Me.strip_version.Name = "strip_version"
|
||||||
|
Me.strip_version.Size = New System.Drawing.Size(60, 17)
|
||||||
|
Me.strip_version.TextAlign = System.Drawing.ContentAlignment.MiddleRight
|
||||||
|
'
|
||||||
|
'menu_options
|
||||||
|
'
|
||||||
|
Me.menu_options.AutoSize = False
|
||||||
|
Me.menu_options.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text
|
||||||
|
Me.menu_options.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.menu_set_var, Me.menu_change_ui, Me.ToolStripSeparator1, Me.menu_turn_off})
|
||||||
|
Me.menu_options.Image = CType(resources.GetObject("menu_options.Image"), System.Drawing.Image)
|
||||||
|
Me.menu_options.ImageTransparentColor = System.Drawing.Color.Magenta
|
||||||
|
Me.menu_options.Name = "menu_options"
|
||||||
|
Me.menu_options.Size = New System.Drawing.Size(64, 20)
|
||||||
|
Me.menu_options.Text = "Options"
|
||||||
|
Me.menu_options.TextAlign = System.Drawing.ContentAlignment.MiddleRight
|
||||||
|
'
|
||||||
|
'menu_set_var
|
||||||
|
'
|
||||||
|
Me.menu_set_var.Name = "menu_set_var"
|
||||||
|
Me.menu_set_var.Size = New System.Drawing.Size(211, 22)
|
||||||
|
Me.menu_set_var.Text = "Set Environment Variables"
|
||||||
|
'
|
||||||
|
'menu_change_ui
|
||||||
|
'
|
||||||
|
Me.menu_change_ui.Name = "menu_change_ui"
|
||||||
|
Me.menu_change_ui.Size = New System.Drawing.Size(211, 22)
|
||||||
|
Me.menu_change_ui.Text = "Change UI version"
|
||||||
|
'
|
||||||
|
'ToolStripSeparator1
|
||||||
|
'
|
||||||
|
Me.ToolStripSeparator1.Name = "ToolStripSeparator1"
|
||||||
|
Me.ToolStripSeparator1.Size = New System.Drawing.Size(208, 6)
|
||||||
|
'
|
||||||
|
'menu_turn_off
|
||||||
|
'
|
||||||
|
Me.menu_turn_off.Name = "menu_turn_off"
|
||||||
|
Me.menu_turn_off.Size = New System.Drawing.Size(211, 22)
|
||||||
|
Me.menu_turn_off.Text = "Turn Off System"
|
||||||
|
'
|
||||||
|
'tmr_eventlistener
|
||||||
|
'
|
||||||
|
Me.tmr_eventlistener.Enabled = True
|
||||||
|
'
|
||||||
|
'gb_user
|
||||||
|
'
|
||||||
|
Me.gb_user.Controls.Add(Me.cmb_group)
|
||||||
|
Me.gb_user.Controls.Add(Me.txt_user)
|
||||||
|
Me.gb_user.Location = New System.Drawing.Point(7, 222)
|
||||||
|
Me.gb_user.Name = "gb_user"
|
||||||
|
Me.gb_user.Size = New System.Drawing.Size(241, 97)
|
||||||
|
Me.gb_user.TabIndex = 5
|
||||||
|
Me.gb_user.TabStop = False
|
||||||
|
Me.gb_user.Text = "Status"
|
||||||
|
'
|
||||||
|
'cmb_group
|
||||||
|
'
|
||||||
|
Me.cmb_group.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
||||||
|
Or System.Windows.Forms.AnchorStyles.Left) _
|
||||||
|
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.cmb_group.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
|
||||||
|
Me.cmb_group.FormattingEnabled = True
|
||||||
|
Me.cmb_group.Items.AddRange(New Object() {"PE", "TD", "REL", "PAR", "RMP", "OPS", "EE"})
|
||||||
|
Me.cmb_group.Location = New System.Drawing.Point(11, 20)
|
||||||
|
Me.cmb_group.Name = "cmb_group"
|
||||||
|
Me.cmb_group.Size = New System.Drawing.Size(219, 21)
|
||||||
|
Me.cmb_group.TabIndex = 2
|
||||||
|
'
|
||||||
|
'txt_user
|
||||||
|
'
|
||||||
|
Me.txt_user.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
||||||
|
Or System.Windows.Forms.AnchorStyles.Left) _
|
||||||
|
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.txt_user.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer))
|
||||||
|
Me.txt_user.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.txt_user.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper
|
||||||
|
Me.txt_user.Font = New System.Drawing.Font("Tahoma", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.txt_user.Location = New System.Drawing.Point(11, 47)
|
||||||
|
Me.txt_user.Name = "txt_user"
|
||||||
|
Me.txt_user.Size = New System.Drawing.Size(219, 40)
|
||||||
|
Me.txt_user.TabIndex = 3
|
||||||
|
Me.txt_user.Text = "USER"
|
||||||
|
Me.txt_user.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
|
||||||
|
'
|
||||||
|
'menu_env_var
|
||||||
|
'
|
||||||
|
Me.menu_env_var.Name = "menu_env_var"
|
||||||
|
Me.menu_env_var.Size = New System.Drawing.Size(211, 22)
|
||||||
|
Me.menu_env_var.Text = "Set Environment Variables"
|
||||||
|
'
|
||||||
|
'sep1
|
||||||
|
'
|
||||||
|
Me.sep1.Name = "sep1"
|
||||||
|
Me.sep1.Size = New System.Drawing.Size(208, 6)
|
||||||
|
'
|
||||||
|
'Form1
|
||||||
|
'
|
||||||
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
|
Me.ClientSize = New System.Drawing.Size(254, 394)
|
||||||
|
Me.Controls.Add(Me.gb_user)
|
||||||
|
Me.Controls.Add(Me.ss_bar)
|
||||||
|
Me.Controls.Add(Me.cmd_start)
|
||||||
|
Me.Controls.Add(Me.gb_runtime)
|
||||||
|
Me.Controls.Add(Me.lbl_instruction)
|
||||||
|
Me.Controls.Add(Me.gb_status)
|
||||||
|
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
||||||
|
Me.MaximizeBox = False
|
||||||
|
Me.Name = "Form1"
|
||||||
|
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
|
||||||
|
Me.Text = "Nextest UI Tracker"
|
||||||
|
Me.TopMost = True
|
||||||
|
Me.gb_status.ResumeLayout(False)
|
||||||
|
Me.gb_runtime.ResumeLayout(False)
|
||||||
|
Me.gb_runtime.PerformLayout()
|
||||||
|
Me.ss_bar.ResumeLayout(False)
|
||||||
|
Me.ss_bar.PerformLayout()
|
||||||
|
Me.gb_user.ResumeLayout(False)
|
||||||
|
Me.gb_user.PerformLayout()
|
||||||
|
Me.ResumeLayout(False)
|
||||||
|
Me.PerformLayout()
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Friend WithEvents gb_status As System.Windows.Forms.GroupBox
|
||||||
|
Friend WithEvents lbl_instruction As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents lbl_status As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents gb_runtime As System.Windows.Forms.GroupBox
|
||||||
|
Friend WithEvents lbl_indicator As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents lbl_runtime As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents tmr_runtime As System.Windows.Forms.Timer
|
||||||
|
Friend WithEvents cmd_start As System.Windows.Forms.Button
|
||||||
|
Friend WithEvents bw_run As System.ComponentModel.BackgroundWorker
|
||||||
|
Friend WithEvents ss_bar As System.Windows.Forms.StatusStrip
|
||||||
|
Friend WithEvents strip_ui As System.Windows.Forms.ToolStripStatusLabel
|
||||||
|
Friend WithEvents tmr_eventlistener As System.Windows.Forms.Timer
|
||||||
|
Friend WithEvents llbl_view_logs As System.Windows.Forms.LinkLabel
|
||||||
|
Friend WithEvents gb_user As System.Windows.Forms.GroupBox
|
||||||
|
Friend WithEvents txt_user As System.Windows.Forms.TextBox
|
||||||
|
Friend WithEvents cmb_group As System.Windows.Forms.ComboBox
|
||||||
|
Friend WithEvents strip_version As System.Windows.Forms.ToolStripStatusLabel
|
||||||
|
Friend WithEvents menu_env_var As System.Windows.Forms.ToolStripMenuItem
|
||||||
|
Friend WithEvents menu_options As System.Windows.Forms.ToolStripDropDownButton
|
||||||
|
Friend WithEvents menu_set_var As System.Windows.Forms.ToolStripMenuItem
|
||||||
|
Friend WithEvents menu_change_ui As System.Windows.Forms.ToolStripMenuItem
|
||||||
|
Friend WithEvents menu_turn_off As System.Windows.Forms.ToolStripMenuItem
|
||||||
|
Friend WithEvents sep1 As System.Windows.Forms.ToolStripSeparator
|
||||||
|
Friend WithEvents ToolStripSeparator1 As System.Windows.Forms.ToolStripSeparator
|
||||||
|
Friend WithEvents tooltip As System.Windows.Forms.ToolTip
|
||||||
|
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,151 @@
|
|||||||
|
<?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>
|
||||||
|
<metadata name="tmr_runtime.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="bw_run.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>135, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="ss_bar.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>226, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
|
<data name="menu_options.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||||
|
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIISURBVDhPpZP7S1NxGMbPPxKaXVUkMEq8IpKUCoY/hGgI
|
||||||
|
ymqkDYYXcCjDZOANURSjCNGFQUTsl4GXVMxKk62YU4fXQpaIlygHQxBRH8/zwvyaIAYe+HLgnPN8nue9
|
||||||
|
HA3nvDTq63oW/jm13XOwvPTB3DYFY5MH+bXfcN8ygfTSMSSXfESicQDxBqdYHwH29g9w2tnZ3UcguIvN
|
||||||
|
rR3417exuBJE5N1n/wfwLgXEOc38Bc6xNRHb+/y4nm49G0Bnit2zf9H6bkliE/jKuYxrd6oVgDWfjB+K
|
||||||
|
TWeKMyrGEVfowITvD9re/9ABVQrAhh0HHK+ZselMMaN/mvwtDb+aVqkA7HYIwIj3ysfluPTorJnP6Ezx
|
||||||
|
oHsD1s5ZXEktUwCOioB5f1CEPR9+wTG6iuiserTo8dkwng7HT/R+XUPF8xlcTjErAOdMcW6NW8STiwG8
|
||||||
|
7vej8oUPN/PsEv3t8Ao0TZP3T1u8uJRkUgAuSYHtO97oLxmXd5t9Ho8aPTK+GzntqNfrLm2fFoihwYOI
|
||||||
|
xGIF4KjoGBLzY1OrF9k6OOFxnwDC4wxIMX1G0pMhgVyMNyoA13PAtS7OrJk1PrC69LUdQWxuF6IybHrX
|
||||||
|
LRI7JrtZdoDAo1XmbjMyD+tjSXxGcXRmnYg5ttD9QuxDhN0uUgDOmbvNTpPOJaGAo2K36cyaGZvOFIfd
|
||||||
|
KlSA8/zRh9ABIDUG+1JpAAAAAElFTkSuQmCC
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<metadata name="tmr_eventlistener.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>316, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="tooltip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>461, 17</value>
|
||||||
|
</metadata>
|
||||||
|
</root>
|
||||||
@@ -0,0 +1,435 @@
|
|||||||
|
Imports Microsoft.Win32
|
||||||
|
Public Structure UI
|
||||||
|
Public Directory As String
|
||||||
|
Public Version As String
|
||||||
|
Public Running As Boolean
|
||||||
|
End Structure
|
||||||
|
|
||||||
|
Public Structure AppMon
|
||||||
|
Public Exename As String
|
||||||
|
Public Path As String
|
||||||
|
Public Appname As String
|
||||||
|
End Structure
|
||||||
|
|
||||||
|
|
||||||
|
Public Class Form1
|
||||||
|
Dim Tick As Long
|
||||||
|
Dim m_UI As New UI
|
||||||
|
Dim m_Apps(6), m_RunApp As AppMon
|
||||||
|
Dim StartTime, EndTime As Date
|
||||||
|
Public env_var_text As String
|
||||||
|
Dim env_vars() As String
|
||||||
|
|
||||||
|
Private Sub Form1_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
|
||||||
|
e.Cancel = True
|
||||||
|
Me.WindowState = FormWindowState.Minimized
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||||
|
'Initilize form
|
||||||
|
lbl_indicator.Parent = lbl_runtime
|
||||||
|
lbl_indicator.BackColor = Color.Transparent
|
||||||
|
lbl_indicator.Location = New Point(27, 30)
|
||||||
|
lbl_indicator.Font = New Font("Tahoma", 8.25)
|
||||||
|
|
||||||
|
strip_version.Text = "v" & Application.ProductVersion.ToString
|
||||||
|
|
||||||
|
'Populate menu
|
||||||
|
menu_turn_off.DropDownItems.Clear()
|
||||||
|
menu_turn_off.DropDownItems.Add("Restart", Nothing, AddressOf menu_shutdown_onclick)
|
||||||
|
menu_turn_off.DropDownItems.Add("Log Off", Nothing, AddressOf menu_shutdown_onclick)
|
||||||
|
menu_turn_off.DropDownItems.Add("Shut Down", Nothing, AddressOf menu_shutdown_onclick)
|
||||||
|
|
||||||
|
'Set registry
|
||||||
|
Registry.SetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Lattice\Nextest Utilization Tracker", "Path", Application.StartupPath)
|
||||||
|
|
||||||
|
m_Apps(0).Appname = "Nextest UI" : m_Apps(0).Exename = "ui.exe" : m_Apps(0).Path = ""
|
||||||
|
m_Apps(1).Appname = "Lot Control Form" : m_Apps(1).Exename = "lotcontrolform.exe" : m_Apps(1).Path = "C:\nextest\LotControlForm\Release\"
|
||||||
|
|
||||||
|
'Default Run app
|
||||||
|
m_RunApp.Appname = "Nextest UI" : m_RunApp.Exename = "ui.exe" : m_RunApp.Path = ""
|
||||||
|
|
||||||
|
'Create Mutex
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub tmr_runtime_Tick(sender As Object, e As EventArgs) Handles tmr_runtime.Tick
|
||||||
|
Dim Hrs As Integer 'number of hours
|
||||||
|
Dim Min As Integer 'number of Minutes
|
||||||
|
Dim Sec As Integer 'number of Sec
|
||||||
|
Dim Days As Integer 'number of days
|
||||||
|
|
||||||
|
Tick = Tick + 1
|
||||||
|
|
||||||
|
Sec = Tick Mod 60
|
||||||
|
Min = ((Tick - Sec) / 60) Mod 60
|
||||||
|
Hrs = ((Tick - (Sec + (Min * 60))) / 3600) Mod 24
|
||||||
|
Days = Tick \ 5184000
|
||||||
|
lbl_runtime.Text = Format(Days, "00") & ":" & Format(Hrs, "00") & ":" & Format(Min, "00") & ":" & Format(Sec, "00")
|
||||||
|
frm_mini.lbl_time.Text = lbl_runtime.Text
|
||||||
|
Exit Sub
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Private Sub cmd_start_Click(sender As Object, e As EventArgs) Handles cmd_start.Click
|
||||||
|
Tick = 0
|
||||||
|
FileOpen(1, Application.StartupPath & "\run.bat", OpenMode.Output, OpenAccess.Write)
|
||||||
|
If Len(env_var_text) Then
|
||||||
|
env_vars = Split(env_var_text, vbNewLine)
|
||||||
|
|
||||||
|
If env_vars Is Nothing = False Then
|
||||||
|
For x As Integer = 0 To UBound(env_vars)
|
||||||
|
PrintLine(1, "Set " & env_vars(x))
|
||||||
|
Next
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
|
||||||
|
If Len(m_RunApp.Path) > 0 Then
|
||||||
|
PrintLine(1, "cd " & m_RunApp.Path)
|
||||||
|
End If
|
||||||
|
|
||||||
|
PrintLine(1, m_RunApp.Exename)
|
||||||
|
Print(1, "exit")
|
||||||
|
|
||||||
|
FileClose(1)
|
||||||
|
|
||||||
|
|
||||||
|
cmd_start.Enabled = False
|
||||||
|
txt_user.ReadOnly = True
|
||||||
|
cmb_group.Enabled = False
|
||||||
|
menu_options.Enabled = False
|
||||||
|
|
||||||
|
'Initial setup before running App
|
||||||
|
tmr_runtime.Enabled = True
|
||||||
|
m_UI.Running = True
|
||||||
|
lbl_status.Text = "RUNNING"
|
||||||
|
lbl_status.BackColor = Color.FromArgb(128, 255, 128)
|
||||||
|
StartTime = Date.Now
|
||||||
|
Me.WindowState = FormWindowState.Minimized
|
||||||
|
|
||||||
|
Application.DoEvents()
|
||||||
|
bw_run.RunWorkerAsync()
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Private Sub menu_ui_item_onclick(sender As Object, e As EventArgs)
|
||||||
|
If sender.ToString = m_UI.Version Then
|
||||||
|
MessageBox.Show("Already using " & m_UI.Version & " Nextest UI Version", "Change UI", MessageBoxButtons.OK, MessageBoxIcon.Information)
|
||||||
|
Exit Sub
|
||||||
|
Else
|
||||||
|
Dim result As Integer
|
||||||
|
result = MessageBox.Show("Are you sure you want to change UI Version from " & m_UI.Version & " to " & sender.ToString, "Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
|
||||||
|
If result = vbNo Then
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
frm_changeui.targetui = sender.ToString
|
||||||
|
frm_changeui.TopMost = True
|
||||||
|
frm_changeui.Show()
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub menu_shutdown_onclick(sender As Object, e As EventArgs)
|
||||||
|
Dim result As Integer
|
||||||
|
result = MessageBox.Show("Are you sure you want to " & sender.ToString & " the system", "Confirm", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
|
||||||
|
|
||||||
|
If result = vbNo Then
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
|
If LCase$(sender.ToString) = "restart" Then
|
||||||
|
FileOpen(1, "C:\kill.bat", OpenMode.Output, OpenAccess.Write)
|
||||||
|
PrintLine(1, "taskkill /f /im nxtuitrack.exe /im SystemService.exe")
|
||||||
|
PrintLine(1, "shutdown -f -r -t 000")
|
||||||
|
FileClose(1)
|
||||||
|
Shell("C:\kill.bat", AppWinStyle.Hide)
|
||||||
|
ElseIf LCase$(sender.ToString) = "log off" Then
|
||||||
|
FileOpen(1, "C:\kill.bat", OpenMode.Output, OpenAccess.Write)
|
||||||
|
PrintLine(1, "taskkill /f /im nxtuitrack.exe /im SystemService.exe")
|
||||||
|
PrintLine(1, "shutdown -f -l -t 000")
|
||||||
|
FileClose(1)
|
||||||
|
Shell("C:\kill.bat", AppWinStyle.Hide)
|
||||||
|
Else
|
||||||
|
FileOpen(1, "C:\kill.bat", OpenMode.Output, OpenAccess.Write)
|
||||||
|
PrintLine(1, "taskkill /f /im nxtuitrack.exe /im SystemService.exe")
|
||||||
|
PrintLine(1, "shutdown -f -s -t 000")
|
||||||
|
FileClose(1)
|
||||||
|
Shell("C:\kill.bat", AppWinStyle.Hide)
|
||||||
|
End If
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub bw_run_DoWork(sender As Object, e As System.ComponentModel.DoWorkEventArgs) Handles bw_run.DoWork
|
||||||
|
|
||||||
|
|
||||||
|
'SHell Execute the bat file to run the app, wait until exit
|
||||||
|
Shell(Application.StartupPath & "\run.bat", AppWinStyle.Hide, True)
|
||||||
|
|
||||||
|
|
||||||
|
'Mark end time then log usage
|
||||||
|
EndTime = Date.Now
|
||||||
|
LogUsage()
|
||||||
|
|
||||||
|
'Reset Windows
|
||||||
|
Me.WindowState = FormWindowState.Normal
|
||||||
|
Me.CenterToScreen()
|
||||||
|
|
||||||
|
'Reset Variables and controls
|
||||||
|
env_var_text = vbNullString
|
||||||
|
|
||||||
|
lbl_status.Text = "IDLE"
|
||||||
|
lbl_status.BackColor = Color.FromArgb(255, 255, 128)
|
||||||
|
m_UI.Running = False
|
||||||
|
menu_options.Enabled = True
|
||||||
|
tmr_runtime.Enabled = False
|
||||||
|
|
||||||
|
'Reset Default Run app
|
||||||
|
m_RunApp.Appname = "Nextest UI" : m_RunApp.Exename = "ui.exe" : m_RunApp.Path = ""
|
||||||
|
|
||||||
|
'Delete bat file
|
||||||
|
FileIO.FileSystem.DeleteFile(Application.StartupPath & "\run.bat", FileIO.UIOption.OnlyErrorDialogs, FileIO.RecycleOption.DeletePermanently)
|
||||||
|
cmd_start.Enabled = True
|
||||||
|
txt_user.ReadOnly = False
|
||||||
|
cmb_group.Enabled = True
|
||||||
|
|
||||||
|
txt_user.Text = "USER"
|
||||||
|
cmb_group.Text = ""
|
||||||
|
|
||||||
|
SkipShell:
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub tmr_eventlistener_Tick(sender As Object, e As EventArgs) Handles tmr_eventlistener.Tick
|
||||||
|
Call UpdateUI()
|
||||||
|
If (Len(cmb_group.Text) = 0 Or Len(txt_user.Text) = 0 Or LCase$(txt_user.Text) = "user") Then
|
||||||
|
cmd_start.Enabled = False
|
||||||
|
Else
|
||||||
|
If m_UI.Running = False Then
|
||||||
|
cmd_start.Enabled = True
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
If m_UI.Running = False Then
|
||||||
|
For Each prog As Process In Process.GetProcesses
|
||||||
|
If LCase$(prog.ProcessName) = "ui" Or LCase$(prog.ProcessName) = "lotcontrolform" Then
|
||||||
|
|
||||||
|
Dim AppIndex As Integer = -1
|
||||||
|
For x As Integer = 0 To UBound(m_Apps)
|
||||||
|
If LCase$(prog.ProcessName) = Replace(LCase$(m_Apps(x).Exename), ".exe", "") Then
|
||||||
|
AppIndex = x
|
||||||
|
m_RunApp.Appname = m_Apps(AppIndex).Appname
|
||||||
|
m_RunApp.Exename = m_Apps(AppIndex).Exename
|
||||||
|
m_RunApp.Path = m_Apps(AppIndex).Path
|
||||||
|
Exit For
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
|
||||||
|
prog.Kill()
|
||||||
|
Me.WindowState = FormWindowState.Normal
|
||||||
|
Me.CenterToScreen()
|
||||||
|
tooltip.Show("Please select group in the dropdown menu", cmb_group, New Point(0, -20), 2500)
|
||||||
|
|
||||||
|
cmd_start.Text = "Start " & m_RunApp.Appname
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
Else
|
||||||
|
If Date.Now.ToString("HH:mm:ss") = "23:59:59" Then
|
||||||
|
EndTime = Date.Now
|
||||||
|
LogUsage()
|
||||||
|
Tick = 0
|
||||||
|
|
||||||
|
StartTime = Date.Now
|
||||||
|
System.Threading.Thread.Sleep(1000)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
If IsRunning("systemservice") = False Then
|
||||||
|
If FileIO.FileSystem.FileExists("C:\Windows\systemservice.exe") = True Then
|
||||||
|
Shell("C:\Windows\systemservice.exe", AppWinStyle.NormalFocus, False)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub llbl_view_logs_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles llbl_view_logs.LinkClicked
|
||||||
|
If FileIO.FileSystem.DirectoryExists(Application.StartupPath & "\logs") = True Then
|
||||||
|
Call Shell("explorer.exe """ & Application.StartupPath & "\logs""", vbMaximizedFocus)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub txt_user_GotFocus(sender As Object, e As EventArgs) Handles txt_user.GotFocus
|
||||||
|
Call txt_user.SelectAll()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub txt_user_MouseUp(sender As Object, e As MouseEventArgs) Handles txt_user.MouseUp
|
||||||
|
Call txt_user.SelectAll()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub menu_options_Click(sender As Object, e As EventArgs) Handles menu_options.Click
|
||||||
|
'Populate UI menu
|
||||||
|
Dim FolderList() As String, X As Integer
|
||||||
|
FolderList = ListFolders("C:\Nextest\")
|
||||||
|
|
||||||
|
menu_change_ui.DropDownItems.Clear()
|
||||||
|
|
||||||
|
For X = 0 To UBound(FolderList)
|
||||||
|
If FileIO.FileSystem.FileExists("C:\Nextest\" & FolderList(X) & "\utils\userel.bat") = True Then
|
||||||
|
menu_change_ui.DropDownItems.Add(FolderList(X), Nothing, AddressOf menu_ui_item_onclick)
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
Private Sub cmb_group_SelectedIndexChanged(sender As Object, e As EventArgs) Handles cmb_group.SelectedIndexChanged
|
||||||
|
If txt_user.Text = "USER" Or Len(txt_user.Text) = 0 Then
|
||||||
|
tooltip.Show("Please type in your name in the text box", txt_user, New Point(0, -20), 2500)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub menu_set_var_Click(sender As Object, e As EventArgs) Handles menu_set_var.Click
|
||||||
|
|
||||||
|
frm_env.Show(Me)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub Form1_Resize(sender As Object, e As EventArgs) Handles Me.Resize
|
||||||
|
If Me.WindowState = FormWindowState.Minimized Then
|
||||||
|
frm_mini.lbl_status.Text = lbl_status.Text
|
||||||
|
frm_mini.lbl_status.BackColor = lbl_status.BackColor
|
||||||
|
frm_mini.lbl_user.Text = txt_user.Text
|
||||||
|
frm_mini.lbl_time.Text = lbl_runtime.Text
|
||||||
|
frm_mini.lbl_pcname.Text = "Host: " & System.Environment.MachineName.ToString
|
||||||
|
frm_mini.Show()
|
||||||
|
ElseIf Me.WindowState = FormWindowState.Normal Then
|
||||||
|
frm_mini.Hide()
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
Public Sub LogUsage()
|
||||||
|
Dim MachineName As String
|
||||||
|
Dim FileName As String
|
||||||
|
Dim PrintHeaderFlag As Boolean = False
|
||||||
|
Dim TickHour As Double
|
||||||
|
|
||||||
|
MachineName = UCase$(System.Environment.MachineName)
|
||||||
|
FileName = MachineName & "_WW" & WorkWeek(Now) & ".txt"
|
||||||
|
|
||||||
|
PrintHeaderFlag = FileIO.FileSystem.FileExists(Application.StartupPath & "\logs\" & FileName)
|
||||||
|
If FileIO.FileSystem.DirectoryExists(Application.StartupPath & "\logs\") = False Then
|
||||||
|
FileIO.FileSystem.CreateDirectory(Application.StartupPath & "\logs\")
|
||||||
|
End If
|
||||||
|
|
||||||
|
FileOpen(1, Application.StartupPath & "\logs\" & FileName, OpenMode.Append, OpenAccess.Write)
|
||||||
|
If PrintHeaderFlag = False Then
|
||||||
|
Print(1, "PC NAME: " & System.Environment.MachineName & vbNewLine)
|
||||||
|
End If
|
||||||
|
|
||||||
|
TickHour = Math.Round(CDbl(Tick / 3600), 2)
|
||||||
|
If TickHour > 0 Then
|
||||||
|
Print(1, cmb_group.Text & ":" & vbTab & DateValue(Now) & vbTab & StartTime.ToString("HH:mm") & "-" & EndTime.ToString("HH:mm") & vbTab & vbTab & TickHour & vbTab & UCase(txt_user.Text) & vbNewLine)
|
||||||
|
End If
|
||||||
|
|
||||||
|
FileClose(1)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Sub UpdateUI()
|
||||||
|
Dim new_UI As String
|
||||||
|
|
||||||
|
'Get UI Directory
|
||||||
|
m_UI.Directory = Registry.GetValue("HKEY_CURRENT_USER\Software\NexTest\", "CurrentRelease", "")
|
||||||
|
|
||||||
|
'Get UI Version
|
||||||
|
Dim tempsplit() As String
|
||||||
|
tempsplit = Split(m_UI.Directory, "\")
|
||||||
|
new_UI = tempsplit(tempsplit.Count - 1)
|
||||||
|
|
||||||
|
'Update PATH variable inside the program
|
||||||
|
If m_UI.Version <> new_UI And Len(m_UI.Version) > 0 Then
|
||||||
|
Dim NEW_ENV_PATH As String
|
||||||
|
NEW_ENV_PATH = Replace$(System.Environment.GetEnvironmentVariable("PATH"), m_UI.Version, new_UI)
|
||||||
|
System.Environment.SetEnvironmentVariable("PATH", NEW_ENV_PATH)
|
||||||
|
End If
|
||||||
|
|
||||||
|
m_UI.Version = new_UI
|
||||||
|
strip_ui.Text = "UI: " & m_UI.Version
|
||||||
|
frm_mini.lbl_uiversion.Text = "UI: " & m_UI.Version
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Function WorkWeek(ADate As Date) As Integer
|
||||||
|
'Dim intReturn As Integer
|
||||||
|
'Dim dteFirstSaturday As Date
|
||||||
|
|
||||||
|
'' Find the first Saturday of the year for the passed in date.
|
||||||
|
'dteFirstSaturday = CDate("01/01/" & Year(ADate))
|
||||||
|
'Do While Weekday(dteFirstSaturday) < vbSaturday
|
||||||
|
' dteFirstSaturday = DateAdd("d", 1, dteFirstSaturday)
|
||||||
|
'Loop
|
||||||
|
|
||||||
|
'If ADate <= dteFirstSaturday Then
|
||||||
|
' intReturn = 1
|
||||||
|
'Else
|
||||||
|
' ' Determine the number of days between the passed in date and the first Saturday.
|
||||||
|
' intReturn = DateDiff("d", dteFirstSaturday, ADate)
|
||||||
|
' ' Divide the number of days passed by 7 to get the number of weeks.
|
||||||
|
' intReturn = intReturn \ 7 + 1
|
||||||
|
' If Not Weekday(ADate) = vbSaturday Then
|
||||||
|
' intReturn = intReturn + 1
|
||||||
|
' End If
|
||||||
|
'End If
|
||||||
|
|
||||||
|
'WorkWeek = intReturn
|
||||||
|
|
||||||
|
WorkWeek = System.Globalization.DateTimeFormatInfo.CurrentInfo.Calendar.GetWeekOfYear(Now, Globalization.CalendarWeekRule.FirstFourDayWeek, DayOfWeek.Monday)
|
||||||
|
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Function ListFolders(Mypath As String) As String()
|
||||||
|
Dim MyName As String, iCount As Integer, TempString As String
|
||||||
|
iCount = 0
|
||||||
|
TempString = vbNullString
|
||||||
|
MyName = Dir(Mypath, vbDirectory) ' Retrieve the first entry.
|
||||||
|
Do While MyName <> "" ' Start the loop.
|
||||||
|
' Ignore the current directory and the encompassing directory.
|
||||||
|
If MyName <> "." And MyName <> ".." Then
|
||||||
|
' Use bitwise comparison to make sure MyName is a directory.
|
||||||
|
If (GetAttr(Mypath & MyName) And vbDirectory) = vbDirectory Then
|
||||||
|
TempString = TempString & MyName & ","
|
||||||
|
iCount = iCount + 1
|
||||||
|
End If ' it represents a directory.
|
||||||
|
End If
|
||||||
|
MyName = Dir() ' Get next entry.
|
||||||
|
Loop
|
||||||
|
|
||||||
|
ListFolders = Split(TempString, ",")
|
||||||
|
End Function
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Public Function IsRunning(ProcessName As String) As Boolean
|
||||||
|
Dim p() As Process
|
||||||
|
p = Process.GetProcessesByName(ProcessName)
|
||||||
|
If p.Count > 0 Then
|
||||||
|
IsRunning = True
|
||||||
|
Else
|
||||||
|
IsRunning = False
|
||||||
|
End If
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Function IsProgramLoaded() As Boolean
|
||||||
|
IsProgramLoaded = False
|
||||||
|
For Each prog As Process In Process.GetProcesses
|
||||||
|
If LCase$(prog.ProcessName) = "ui" Then
|
||||||
|
If InStr(LCase$(prog.MainWindowTitle), ".exe") > 0 Then
|
||||||
|
IsProgramLoaded = True
|
||||||
|
End If
|
||||||
|
Exit For
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
End Function
|
||||||
|
|
||||||
|
|
||||||
|
Private Sub menu_change_ui_Click(sender As Object, e As EventArgs) Handles menu_change_ui.Click
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,151 @@
|
|||||||
|
<?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>
|
||||||
|
<metadata name="tmr_runtime.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="bw_run.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>135, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="ss_bar.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>226, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
|
<data name="menu_options.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||||
|
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIISURBVDhPpZP7S1NxGMbPPxKaXVUkMEq8IpKUCoY/hGgI
|
||||||
|
ymqkDYYXcCjDZOANURSjCNGFQUTsl4GXVMxKk62YU4fXQpaIlygHQxBRH8/zwvyaIAYe+HLgnPN8nue9
|
||||||
|
HA3nvDTq63oW/jm13XOwvPTB3DYFY5MH+bXfcN8ygfTSMSSXfESicQDxBqdYHwH29g9w2tnZ3UcguIvN
|
||||||
|
rR3417exuBJE5N1n/wfwLgXEOc38Bc6xNRHb+/y4nm49G0Bnit2zf9H6bkliE/jKuYxrd6oVgDWfjB+K
|
||||||
|
TWeKMyrGEVfowITvD9re/9ABVQrAhh0HHK+ZselMMaN/mvwtDb+aVqkA7HYIwIj3ysfluPTorJnP6Ezx
|
||||||
|
oHsD1s5ZXEktUwCOioB5f1CEPR9+wTG6iuiserTo8dkwng7HT/R+XUPF8xlcTjErAOdMcW6NW8STiwG8
|
||||||
|
7vej8oUPN/PsEv3t8Ao0TZP3T1u8uJRkUgAuSYHtO97oLxmXd5t9Ho8aPTK+GzntqNfrLm2fFoihwYOI
|
||||||
|
xGIF4KjoGBLzY1OrF9k6OOFxnwDC4wxIMX1G0pMhgVyMNyoA13PAtS7OrJk1PrC69LUdQWxuF6IybHrX
|
||||||
|
LRI7JrtZdoDAo1XmbjMyD+tjSXxGcXRmnYg5ttD9QuxDhN0uUgDOmbvNTpPOJaGAo2K36cyaGZvOFIfd
|
||||||
|
KlSA8/zRh9ABIDUG+1JpAAAAAElFTkSuQmCC
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<metadata name="tmr_eventlistener.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>316, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="tooltip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>461, 17</value>
|
||||||
|
</metadata>
|
||||||
|
</root>
|
||||||
@@ -0,0 +1,435 @@
|
|||||||
|
Imports Microsoft.Win32
|
||||||
|
Public Structure UI
|
||||||
|
Public Directory As String
|
||||||
|
Public Version As String
|
||||||
|
Public Running As Boolean
|
||||||
|
End Structure
|
||||||
|
|
||||||
|
Public Structure AppMon
|
||||||
|
Public Exename As String
|
||||||
|
Public Path As String
|
||||||
|
Public Appname As String
|
||||||
|
End Structure
|
||||||
|
|
||||||
|
|
||||||
|
Public Class Form1
|
||||||
|
Dim Tick As Long
|
||||||
|
Dim m_UI As New UI
|
||||||
|
Dim m_Apps(6), m_RunApp As AppMon
|
||||||
|
Dim StartTime, EndTime As Date
|
||||||
|
Public env_var_text As String
|
||||||
|
Dim env_vars() As String
|
||||||
|
|
||||||
|
Private Sub Form1_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
|
||||||
|
e.Cancel = True
|
||||||
|
Me.WindowState = FormWindowState.Minimized
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||||
|
'Initilize form
|
||||||
|
lbl_indicator.Parent = lbl_runtime
|
||||||
|
lbl_indicator.BackColor = Color.Transparent
|
||||||
|
lbl_indicator.Location = New Point(27, 30)
|
||||||
|
lbl_indicator.Font = New Font("Tahoma", 8.25)
|
||||||
|
|
||||||
|
strip_version.Text = "v" & Application.ProductVersion.ToString
|
||||||
|
|
||||||
|
'Populate menu
|
||||||
|
menu_turn_off.DropDownItems.Clear()
|
||||||
|
menu_turn_off.DropDownItems.Add("Restart", Nothing, AddressOf menu_shutdown_onclick)
|
||||||
|
menu_turn_off.DropDownItems.Add("Log Off", Nothing, AddressOf menu_shutdown_onclick)
|
||||||
|
menu_turn_off.DropDownItems.Add("Shut Down", Nothing, AddressOf menu_shutdown_onclick)
|
||||||
|
|
||||||
|
'Set registry
|
||||||
|
Registry.SetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Lattice\Nextest Utilization Tracker", "Path", Application.StartupPath)
|
||||||
|
|
||||||
|
m_Apps(0).Appname = "Nextest UI" : m_Apps(0).Exename = "ui.exe" : m_Apps(0).Path = ""
|
||||||
|
m_Apps(1).Appname = "Lot Control Form" : m_Apps(1).Exename = "lotcontrolform.exe" : m_Apps(1).Path = "C:\nextest\LotControlForm\Release\"
|
||||||
|
|
||||||
|
'Default Run app
|
||||||
|
m_RunApp.Appname = "Nextest UI" : m_RunApp.Exename = "ui.exe" : m_RunApp.Path = ""
|
||||||
|
|
||||||
|
'Create Mutex
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub tmr_runtime_Tick(sender As Object, e As EventArgs) Handles tmr_runtime.Tick
|
||||||
|
Dim Hrs As Integer 'number of hours
|
||||||
|
Dim Min As Integer 'number of Minutes
|
||||||
|
Dim Sec As Integer 'number of Sec
|
||||||
|
Dim Days As Integer 'number of days
|
||||||
|
|
||||||
|
Tick = Tick + 1
|
||||||
|
|
||||||
|
Sec = Tick Mod 60
|
||||||
|
Min = ((Tick - Sec) / 60) Mod 60
|
||||||
|
Hrs = ((Tick - (Sec + (Min * 60))) / 3600) Mod 24
|
||||||
|
Days = Tick \ 5184000
|
||||||
|
lbl_runtime.Text = Format(Days, "00") & ":" & Format(Hrs, "00") & ":" & Format(Min, "00") & ":" & Format(Sec, "00")
|
||||||
|
frm_mini.lbl_time.Text = lbl_runtime.Text
|
||||||
|
Exit Sub
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Private Sub cmd_start_Click(sender As Object, e As EventArgs) Handles cmd_start.Click
|
||||||
|
Tick = 0
|
||||||
|
FileOpen(1, Application.StartupPath & "\run.bat", OpenMode.Output, OpenAccess.Write)
|
||||||
|
If Len(env_var_text) Then
|
||||||
|
env_vars = Split(env_var_text, vbNewLine)
|
||||||
|
|
||||||
|
If env_vars Is Nothing = False Then
|
||||||
|
For x As Integer = 0 To UBound(env_vars)
|
||||||
|
PrintLine(1, "Set " & env_vars(x))
|
||||||
|
Next
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
|
||||||
|
If Len(m_RunApp.Path) > 0 Then
|
||||||
|
PrintLine(1, "cd " & m_RunApp.Path)
|
||||||
|
End If
|
||||||
|
|
||||||
|
PrintLine(1, m_RunApp.Exename)
|
||||||
|
Print(1, "exit")
|
||||||
|
|
||||||
|
FileClose(1)
|
||||||
|
|
||||||
|
|
||||||
|
cmd_start.Enabled = False
|
||||||
|
txt_user.ReadOnly = True
|
||||||
|
cmb_group.Enabled = False
|
||||||
|
menu_options.Enabled = False
|
||||||
|
|
||||||
|
'Initial setup before running App
|
||||||
|
tmr_runtime.Enabled = True
|
||||||
|
m_UI.Running = True
|
||||||
|
lbl_status.Text = "RUNNING"
|
||||||
|
lbl_status.BackColor = Color.FromArgb(128, 255, 128)
|
||||||
|
StartTime = Date.Now
|
||||||
|
Me.WindowState = FormWindowState.Minimized
|
||||||
|
|
||||||
|
Application.DoEvents()
|
||||||
|
bw_run.RunWorkerAsync()
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Private Sub menu_ui_item_onclick(sender As Object, e As EventArgs)
|
||||||
|
If sender.ToString = m_UI.Version Then
|
||||||
|
MessageBox.Show("Already using " & m_UI.Version & " Nextest UI Version", "Change UI", MessageBoxButtons.OK, MessageBoxIcon.Information)
|
||||||
|
Exit Sub
|
||||||
|
Else
|
||||||
|
Dim result As Integer
|
||||||
|
result = MessageBox.Show("Are you sure you want to change UI Version from " & m_UI.Version & " to " & sender.ToString, "Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
|
||||||
|
If result = vbNo Then
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
frm_changeui.targetui = sender.ToString
|
||||||
|
frm_changeui.TopMost = True
|
||||||
|
frm_changeui.Show()
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub menu_shutdown_onclick(sender As Object, e As EventArgs)
|
||||||
|
Dim result As Integer
|
||||||
|
result = MessageBox.Show("Are you sure you want to " & sender.ToString & " the system", "Confirm", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
|
||||||
|
|
||||||
|
If result = vbNo Then
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
|
If LCase$(sender.ToString) = "restart" Then
|
||||||
|
FileOpen(1, "C:\kill.bat", OpenMode.Output, OpenAccess.Write)
|
||||||
|
PrintLine(1, "taskkill /f /im nxtuitrack.exe /im SystemService.exe")
|
||||||
|
PrintLine(1, "shutdown -f -r -t 000")
|
||||||
|
FileClose(1)
|
||||||
|
Shell("C:\kill.bat", AppWinStyle.Hide)
|
||||||
|
ElseIf LCase$(sender.ToString) = "log off" Then
|
||||||
|
FileOpen(1, "C:\kill.bat", OpenMode.Output, OpenAccess.Write)
|
||||||
|
PrintLine(1, "taskkill /f /im nxtuitrack.exe /im SystemService.exe")
|
||||||
|
PrintLine(1, "shutdown -f -l -t 000")
|
||||||
|
FileClose(1)
|
||||||
|
Shell("C:\kill.bat", AppWinStyle.Hide)
|
||||||
|
Else
|
||||||
|
FileOpen(1, "C:\kill.bat", OpenMode.Output, OpenAccess.Write)
|
||||||
|
PrintLine(1, "taskkill /f /im nxtuitrack.exe /im SystemService.exe")
|
||||||
|
PrintLine(1, "shutdown -f -s -t 000")
|
||||||
|
FileClose(1)
|
||||||
|
Shell("C:\kill.bat", AppWinStyle.Hide)
|
||||||
|
End If
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub bw_run_DoWork(sender As Object, e As System.ComponentModel.DoWorkEventArgs) Handles bw_run.DoWork
|
||||||
|
|
||||||
|
|
||||||
|
'SHell Execute the bat file to run the app, wait until exit
|
||||||
|
Shell(Application.StartupPath & "\run.bat", AppWinStyle.Hide, True)
|
||||||
|
|
||||||
|
|
||||||
|
'Mark end time then log usage
|
||||||
|
EndTime = Date.Now
|
||||||
|
LogUsage()
|
||||||
|
|
||||||
|
'Reset Windows
|
||||||
|
Me.WindowState = FormWindowState.Normal
|
||||||
|
Me.CenterToScreen()
|
||||||
|
|
||||||
|
'Reset Variables and controls
|
||||||
|
env_var_text = vbNullString
|
||||||
|
|
||||||
|
lbl_status.Text = "IDLE"
|
||||||
|
lbl_status.BackColor = Color.FromArgb(255, 255, 128)
|
||||||
|
m_UI.Running = False
|
||||||
|
menu_options.Enabled = True
|
||||||
|
tmr_runtime.Enabled = False
|
||||||
|
|
||||||
|
'Reset Default Run app
|
||||||
|
m_RunApp.Appname = "Nextest UI" : m_RunApp.Exename = "ui.exe" : m_RunApp.Path = ""
|
||||||
|
|
||||||
|
'Delete bat file
|
||||||
|
FileIO.FileSystem.DeleteFile(Application.StartupPath & "\run.bat", FileIO.UIOption.OnlyErrorDialogs, FileIO.RecycleOption.DeletePermanently)
|
||||||
|
cmd_start.Enabled = True
|
||||||
|
txt_user.ReadOnly = False
|
||||||
|
cmb_group.Enabled = True
|
||||||
|
|
||||||
|
txt_user.Text = "USER"
|
||||||
|
cmb_group.Text = ""
|
||||||
|
|
||||||
|
SkipShell:
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub tmr_eventlistener_Tick(sender As Object, e As EventArgs) Handles tmr_eventlistener.Tick
|
||||||
|
Call UpdateUI()
|
||||||
|
If (Len(cmb_group.Text) = 0 Or Len(txt_user.Text) = 0 Or LCase$(txt_user.Text) = "user") Then
|
||||||
|
cmd_start.Enabled = False
|
||||||
|
Else
|
||||||
|
If m_UI.Running = False Then
|
||||||
|
cmd_start.Enabled = True
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
If m_UI.Running = False Then
|
||||||
|
For Each prog As Process In Process.GetProcesses
|
||||||
|
If LCase$(prog.ProcessName) = "ui" Or LCase$(prog.ProcessName) = "lotcontrolform" Then
|
||||||
|
|
||||||
|
Dim AppIndex As Integer = -1
|
||||||
|
For x As Integer = 0 To UBound(m_Apps)
|
||||||
|
If LCase$(prog.ProcessName) = Replace(LCase$(m_Apps(x).Exename), ".exe", "") Then
|
||||||
|
AppIndex = x
|
||||||
|
m_RunApp.Appname = m_Apps(AppIndex).Appname
|
||||||
|
m_RunApp.Exename = m_Apps(AppIndex).Exename
|
||||||
|
m_RunApp.Path = m_Apps(AppIndex).Path
|
||||||
|
Exit For
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
|
||||||
|
prog.Kill()
|
||||||
|
Me.WindowState = FormWindowState.Normal
|
||||||
|
Me.CenterToScreen()
|
||||||
|
tooltip.Show("Please select group in the dropdown menu", cmb_group, New Point(0, -20), 2500)
|
||||||
|
|
||||||
|
cmd_start.Text = "Start " & m_RunApp.Appname
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
Else
|
||||||
|
If Date.Now.ToString("HH:mm:ss") = "23:59:59" Then
|
||||||
|
EndTime = Date.Now
|
||||||
|
LogUsage()
|
||||||
|
Tick = 0
|
||||||
|
|
||||||
|
StartTime = Date.Now
|
||||||
|
System.Threading.Thread.Sleep(1000)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
If IsRunning("systemservice") = False Then
|
||||||
|
If FileIO.FileSystem.FileExists("C:\Windows\systemservice.exe") = True Then
|
||||||
|
Shell("C:\Windows\systemservice.exe", AppWinStyle.NormalFocus, False)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub llbl_view_logs_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles llbl_view_logs.LinkClicked
|
||||||
|
If FileIO.FileSystem.DirectoryExists(Application.StartupPath & "\logs") = True Then
|
||||||
|
Call Shell("explorer.exe """ & Application.StartupPath & "\logs""", vbMaximizedFocus)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub txt_user_GotFocus(sender As Object, e As EventArgs) Handles txt_user.GotFocus
|
||||||
|
Call txt_user.SelectAll()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub txt_user_MouseUp(sender As Object, e As MouseEventArgs) Handles txt_user.MouseUp
|
||||||
|
Call txt_user.SelectAll()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub menu_options_Click(sender As Object, e As EventArgs) Handles menu_options.Click
|
||||||
|
'Populate UI menu
|
||||||
|
Dim FolderList() As String, X As Integer
|
||||||
|
FolderList = ListFolders("C:\Nextest\")
|
||||||
|
|
||||||
|
menu_change_ui.DropDownItems.Clear()
|
||||||
|
|
||||||
|
For X = 0 To UBound(FolderList)
|
||||||
|
If FileIO.FileSystem.FileExists("C:\Nextest\" & FolderList(X) & "\utils\userel.bat") = True Then
|
||||||
|
menu_change_ui.DropDownItems.Add(FolderList(X), Nothing, AddressOf menu_ui_item_onclick)
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
Private Sub cmb_group_SelectedIndexChanged(sender As Object, e As EventArgs) Handles cmb_group.SelectedIndexChanged
|
||||||
|
If txt_user.Text = "USER" Or Len(txt_user.Text) = 0 Then
|
||||||
|
tooltip.Show("Please type in your name in the text box", txt_user, New Point(0, -20), 2500)
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub menu_set_var_Click(sender As Object, e As EventArgs) Handles menu_set_var.Click
|
||||||
|
|
||||||
|
frm_env.Show(Me)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub Form1_Resize(sender As Object, e As EventArgs) Handles Me.Resize
|
||||||
|
If Me.WindowState = FormWindowState.Minimized Then
|
||||||
|
frm_mini.lbl_status.Text = lbl_status.Text
|
||||||
|
frm_mini.lbl_status.BackColor = lbl_status.BackColor
|
||||||
|
frm_mini.lbl_user.Text = txt_user.Text
|
||||||
|
frm_mini.lbl_time.Text = lbl_runtime.Text
|
||||||
|
frm_mini.lbl_pcname.Text = "Host: " & System.Environment.MachineName.ToString
|
||||||
|
frm_mini.Show()
|
||||||
|
ElseIf Me.WindowState = FormWindowState.Normal Then
|
||||||
|
frm_mini.Hide()
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
Public Sub LogUsage()
|
||||||
|
Dim MachineName As String
|
||||||
|
Dim FileName As String
|
||||||
|
Dim PrintHeaderFlag As Boolean = False
|
||||||
|
Dim TickHour As Double
|
||||||
|
|
||||||
|
MachineName = UCase$(System.Environment.MachineName)
|
||||||
|
FileName = MachineName & "_WW" & WorkWeek(Now) & ".txt"
|
||||||
|
|
||||||
|
PrintHeaderFlag = FileIO.FileSystem.FileExists(Application.StartupPath & "\logs\" & FileName)
|
||||||
|
If FileIO.FileSystem.DirectoryExists(Application.StartupPath & "\logs\") = False Then
|
||||||
|
FileIO.FileSystem.CreateDirectory(Application.StartupPath & "\logs\")
|
||||||
|
End If
|
||||||
|
|
||||||
|
FileOpen(1, Application.StartupPath & "\logs\" & FileName, OpenMode.Append, OpenAccess.Write)
|
||||||
|
If PrintHeaderFlag = False Then
|
||||||
|
Print(1, "PC NAME: " & System.Environment.MachineName & vbNewLine)
|
||||||
|
End If
|
||||||
|
|
||||||
|
TickHour = Math.Round(CDbl(Tick / 3600), 2)
|
||||||
|
If TickHour > 0 Then
|
||||||
|
Print(1, cmb_group.Text & ":" & vbTab & DateValue(Now) & vbTab & StartTime.ToString("HH:mm") & "-" & EndTime.ToString("HH:mm") & vbTab & vbTab & TickHour & vbTab & UCase(txt_user.Text) & vbNewLine)
|
||||||
|
End If
|
||||||
|
|
||||||
|
FileClose(1)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Sub UpdateUI()
|
||||||
|
Dim new_UI As String
|
||||||
|
|
||||||
|
'Get UI Directory
|
||||||
|
m_UI.Directory = Registry.GetValue("HKEY_CURRENT_USER\Software\NexTest\", "CurrentRelease", "")
|
||||||
|
|
||||||
|
'Get UI Version
|
||||||
|
Dim tempsplit() As String
|
||||||
|
tempsplit = Split(m_UI.Directory, "\")
|
||||||
|
new_UI = tempsplit(tempsplit.Count - 1)
|
||||||
|
|
||||||
|
'Update PATH variable inside the program
|
||||||
|
If m_UI.Version <> new_UI And Len(m_UI.Version) > 0 Then
|
||||||
|
Dim NEW_ENV_PATH As String
|
||||||
|
NEW_ENV_PATH = Replace$(System.Environment.GetEnvironmentVariable("PATH"), m_UI.Version, new_UI)
|
||||||
|
System.Environment.SetEnvironmentVariable("PATH", NEW_ENV_PATH)
|
||||||
|
End If
|
||||||
|
|
||||||
|
m_UI.Version = new_UI
|
||||||
|
strip_ui.Text = "UI: " & m_UI.Version
|
||||||
|
frm_mini.lbl_uiversion.Text = "UI: " & m_UI.Version
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Function WorkWeek(ADate As Date) As Integer
|
||||||
|
'Dim intReturn As Integer
|
||||||
|
'Dim dteFirstSaturday As Date
|
||||||
|
|
||||||
|
'' Find the first Saturday of the year for the passed in date.
|
||||||
|
'dteFirstSaturday = CDate("01/01/" & Year(ADate))
|
||||||
|
'Do While Weekday(dteFirstSaturday) < vbSaturday
|
||||||
|
' dteFirstSaturday = DateAdd("d", 1, dteFirstSaturday)
|
||||||
|
'Loop
|
||||||
|
|
||||||
|
'If ADate <= dteFirstSaturday Then
|
||||||
|
' intReturn = 1
|
||||||
|
'Else
|
||||||
|
' ' Determine the number of days between the passed in date and the first Saturday.
|
||||||
|
' intReturn = DateDiff("d", dteFirstSaturday, ADate)
|
||||||
|
' ' Divide the number of days passed by 7 to get the number of weeks.
|
||||||
|
' intReturn = intReturn \ 7 + 1
|
||||||
|
' If Not Weekday(ADate) = vbSaturday Then
|
||||||
|
' intReturn = intReturn + 1
|
||||||
|
' End If
|
||||||
|
'End If
|
||||||
|
|
||||||
|
'WorkWeek = intReturn
|
||||||
|
|
||||||
|
WorkWeek = System.Globalization.DateTimeFormatInfo.CurrentInfo.Calendar.GetWeekOfYear(Now, Globalization.CalendarWeekRule.FirstFourDayWeek, DayOfWeek.Monday)
|
||||||
|
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Function ListFolders(Mypath As String) As String()
|
||||||
|
Dim MyName As String, iCount As Integer, TempString As String
|
||||||
|
iCount = 0
|
||||||
|
TempString = vbNullString
|
||||||
|
MyName = Dir(Mypath, vbDirectory) ' Retrieve the first entry.
|
||||||
|
Do While MyName <> "" ' Start the loop.
|
||||||
|
' Ignore the current directory and the encompassing directory.
|
||||||
|
If MyName <> "." And MyName <> ".." Then
|
||||||
|
' Use bitwise comparison to make sure MyName is a directory.
|
||||||
|
If (GetAttr(Mypath & MyName) And vbDirectory) = vbDirectory Then
|
||||||
|
TempString = TempString & MyName & ","
|
||||||
|
iCount = iCount + 1
|
||||||
|
End If ' it represents a directory.
|
||||||
|
End If
|
||||||
|
MyName = Dir() ' Get next entry.
|
||||||
|
Loop
|
||||||
|
|
||||||
|
ListFolders = Split(TempString, ",")
|
||||||
|
End Function
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Public Function IsRunning(ProcessName As String) As Boolean
|
||||||
|
Dim p() As Process
|
||||||
|
p = Process.GetProcessesByName(ProcessName)
|
||||||
|
If p.Count > 0 Then
|
||||||
|
IsRunning = True
|
||||||
|
Else
|
||||||
|
IsRunning = False
|
||||||
|
End If
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Function IsProgramLoaded() As Boolean
|
||||||
|
IsProgramLoaded = False
|
||||||
|
For Each prog As Process In Process.GetProcesses
|
||||||
|
If LCase$(prog.ProcessName) = "ui" Then
|
||||||
|
If InStr(LCase$(prog.MainWindowTitle), ".exe") > 0 Then
|
||||||
|
IsProgramLoaded = True
|
||||||
|
End If
|
||||||
|
Exit For
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
End Function
|
||||||
|
|
||||||
|
|
||||||
|
Private Sub menu_change_ui_Click(sender As Object, e As EventArgs) Handles menu_change_ui.Click
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
|
|
||||||
|
|
||||||
Generated
+92
@@ -0,0 +1,92 @@
|
|||||||
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||||
|
Partial Class frm_env
|
||||||
|
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.txt_env_variables = New System.Windows.Forms.TextBox()
|
||||||
|
Me.gbox_instr = New System.Windows.Forms.GroupBox()
|
||||||
|
Me.lbl_instr = New System.Windows.Forms.Label()
|
||||||
|
Me.cmd_save_env = New System.Windows.Forms.Button()
|
||||||
|
Me.gbox_instr.SuspendLayout()
|
||||||
|
Me.SuspendLayout()
|
||||||
|
'
|
||||||
|
'txt_env_variables
|
||||||
|
'
|
||||||
|
Me.txt_env_variables.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.txt_env_variables.Location = New System.Drawing.Point(12, 12)
|
||||||
|
Me.txt_env_variables.Multiline = True
|
||||||
|
Me.txt_env_variables.Name = "txt_env_variables"
|
||||||
|
Me.txt_env_variables.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
|
||||||
|
Me.txt_env_variables.Size = New System.Drawing.Size(248, 174)
|
||||||
|
Me.txt_env_variables.TabIndex = 0
|
||||||
|
'
|
||||||
|
'gbox_instr
|
||||||
|
'
|
||||||
|
Me.gbox_instr.Controls.Add(Me.lbl_instr)
|
||||||
|
Me.gbox_instr.Location = New System.Drawing.Point(266, 4)
|
||||||
|
Me.gbox_instr.Name = "gbox_instr"
|
||||||
|
Me.gbox_instr.Size = New System.Drawing.Size(125, 142)
|
||||||
|
Me.gbox_instr.TabIndex = 1
|
||||||
|
Me.gbox_instr.TabStop = False
|
||||||
|
'
|
||||||
|
'lbl_instr
|
||||||
|
'
|
||||||
|
Me.lbl_instr.Font = New System.Drawing.Font("Tahoma", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.lbl_instr.Location = New System.Drawing.Point(6, 25)
|
||||||
|
Me.lbl_instr.Name = "lbl_instr"
|
||||||
|
Me.lbl_instr.Size = New System.Drawing.Size(115, 106)
|
||||||
|
Me.lbl_instr.TabIndex = 0
|
||||||
|
Me.lbl_instr.Text = "Add environment variables as shown below" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Example:" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "DEVICE_TYPE=HX" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "MASK_REV=" & _
|
||||||
|
"01A"
|
||||||
|
'
|
||||||
|
'cmd_save_env
|
||||||
|
'
|
||||||
|
Me.cmd_save_env.Location = New System.Drawing.Point(266, 152)
|
||||||
|
Me.cmd_save_env.Name = "cmd_save_env"
|
||||||
|
Me.cmd_save_env.Size = New System.Drawing.Size(125, 33)
|
||||||
|
Me.cmd_save_env.TabIndex = 2
|
||||||
|
Me.cmd_save_env.Text = "&Save"
|
||||||
|
Me.cmd_save_env.UseVisualStyleBackColor = False
|
||||||
|
'
|
||||||
|
'frm_env
|
||||||
|
'
|
||||||
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
|
Me.ClientSize = New System.Drawing.Size(401, 199)
|
||||||
|
Me.Controls.Add(Me.cmd_save_env)
|
||||||
|
Me.Controls.Add(Me.gbox_instr)
|
||||||
|
Me.Controls.Add(Me.txt_env_variables)
|
||||||
|
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow
|
||||||
|
Me.Name = "frm_env"
|
||||||
|
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
|
||||||
|
Me.Text = "Environment Variables"
|
||||||
|
Me.gbox_instr.ResumeLayout(False)
|
||||||
|
Me.ResumeLayout(False)
|
||||||
|
Me.PerformLayout()
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Friend WithEvents gbox_instr As System.Windows.Forms.GroupBox
|
||||||
|
Friend WithEvents lbl_instr As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents cmd_save_env As System.Windows.Forms.Button
|
||||||
|
Public WithEvents txt_env_variables As System.Windows.Forms.TextBox
|
||||||
|
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,15 @@
|
|||||||
|
Public Class frm_env
|
||||||
|
|
||||||
|
Private Sub cmd_save_env_Click(sender As Object, e As EventArgs) Handles cmd_save_env.Click
|
||||||
|
Form1.env_var_text = txt_env_variables.Text
|
||||||
|
Me.Close()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub txt_env_variables_TextChanged(sender As Object, e As EventArgs) Handles txt_env_variables.TextChanged
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub frm_env_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||||
|
txt_env_variables.Text = Form1.env_var_text
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
Public Class frm_env
|
||||||
|
|
||||||
|
Private Sub cmd_save_env_Click(sender As Object, e As EventArgs) Handles cmd_save_env.Click
|
||||||
|
Form1.env_var_text = txt_env_variables.Text
|
||||||
|
Me.Close()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub txt_env_variables_TextChanged(sender As Object, e As EventArgs) Handles txt_env_variables.TextChanged
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub frm_env_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||||
|
txt_env_variables.Text = Form1.env_var_text
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
Generated
+161
@@ -0,0 +1,161 @@
|
|||||||
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||||
|
Partial Class frm_mini
|
||||||
|
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.lbl_status = New System.Windows.Forms.Label()
|
||||||
|
Me.lbl_user = New System.Windows.Forms.Label()
|
||||||
|
Me.Label2 = New System.Windows.Forms.Label()
|
||||||
|
Me.Label3 = New System.Windows.Forms.Label()
|
||||||
|
Me.lbl_time = New System.Windows.Forms.Label()
|
||||||
|
Me.Label4 = New System.Windows.Forms.Label()
|
||||||
|
Me.lbl_uiversion = New System.Windows.Forms.Label()
|
||||||
|
Me.lbl_pcname = New System.Windows.Forms.Label()
|
||||||
|
Me.SuspendLayout()
|
||||||
|
'
|
||||||
|
'lbl_status
|
||||||
|
'
|
||||||
|
Me.lbl_status.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer))
|
||||||
|
Me.lbl_status.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.lbl_status.Font = New System.Drawing.Font("Tahoma", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.lbl_status.Location = New System.Drawing.Point(53, 6)
|
||||||
|
Me.lbl_status.Name = "lbl_status"
|
||||||
|
Me.lbl_status.Size = New System.Drawing.Size(72, 13)
|
||||||
|
Me.lbl_status.TabIndex = 0
|
||||||
|
Me.lbl_status.Text = "RUNNING"
|
||||||
|
'
|
||||||
|
'lbl_user
|
||||||
|
'
|
||||||
|
Me.lbl_user.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer))
|
||||||
|
Me.lbl_user.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.lbl_user.Font = New System.Drawing.Font("Tahoma", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.lbl_user.Location = New System.Drawing.Point(53, 23)
|
||||||
|
Me.lbl_user.Name = "lbl_user"
|
||||||
|
Me.lbl_user.Size = New System.Drawing.Size(72, 13)
|
||||||
|
Me.lbl_user.TabIndex = 1
|
||||||
|
Me.lbl_user.Text = "YET"
|
||||||
|
'
|
||||||
|
'Label2
|
||||||
|
'
|
||||||
|
Me.Label2.AutoSize = True
|
||||||
|
Me.Label2.FlatStyle = System.Windows.Forms.FlatStyle.System
|
||||||
|
Me.Label2.Font = New System.Drawing.Font("MS Reference Sans Serif", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.Label2.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.Label2.Location = New System.Drawing.Point(10, 23)
|
||||||
|
Me.Label2.Name = "Label2"
|
||||||
|
Me.Label2.Size = New System.Drawing.Size(36, 12)
|
||||||
|
Me.Label2.TabIndex = 2
|
||||||
|
Me.Label2.Text = "User: "
|
||||||
|
'
|
||||||
|
'Label3
|
||||||
|
'
|
||||||
|
Me.Label3.AutoSize = True
|
||||||
|
Me.Label3.FlatStyle = System.Windows.Forms.FlatStyle.System
|
||||||
|
Me.Label3.Font = New System.Drawing.Font("MS Reference Sans Serif", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.Label3.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.Label3.Location = New System.Drawing.Point(10, 6)
|
||||||
|
Me.Label3.Name = "Label3"
|
||||||
|
Me.Label3.Size = New System.Drawing.Size(42, 12)
|
||||||
|
Me.Label3.TabIndex = 3
|
||||||
|
Me.Label3.Text = "Status:"
|
||||||
|
'
|
||||||
|
'lbl_time
|
||||||
|
'
|
||||||
|
Me.lbl_time.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer))
|
||||||
|
Me.lbl_time.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.lbl_time.Font = New System.Drawing.Font("Tahoma", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.lbl_time.Location = New System.Drawing.Point(53, 41)
|
||||||
|
Me.lbl_time.Name = "lbl_time"
|
||||||
|
Me.lbl_time.Size = New System.Drawing.Size(72, 13)
|
||||||
|
Me.lbl_time.TabIndex = 4
|
||||||
|
Me.lbl_time.Text = "00:00:00:00"
|
||||||
|
'
|
||||||
|
'Label4
|
||||||
|
'
|
||||||
|
Me.Label4.AutoSize = True
|
||||||
|
Me.Label4.FlatStyle = System.Windows.Forms.FlatStyle.System
|
||||||
|
Me.Label4.Font = New System.Drawing.Font("MS Reference Sans Serif", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.Label4.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.Label4.Location = New System.Drawing.Point(10, 41)
|
||||||
|
Me.Label4.Name = "Label4"
|
||||||
|
Me.Label4.Size = New System.Drawing.Size(34, 12)
|
||||||
|
Me.Label4.TabIndex = 5
|
||||||
|
Me.Label4.Text = "Time:"
|
||||||
|
'
|
||||||
|
'lbl_uiversion
|
||||||
|
'
|
||||||
|
Me.lbl_uiversion.FlatStyle = System.Windows.Forms.FlatStyle.System
|
||||||
|
Me.lbl_uiversion.Font = New System.Drawing.Font("MS Reference Sans Serif", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.lbl_uiversion.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.lbl_uiversion.Location = New System.Drawing.Point(10, 75)
|
||||||
|
Me.lbl_uiversion.Name = "lbl_uiversion"
|
||||||
|
Me.lbl_uiversion.Size = New System.Drawing.Size(113, 13)
|
||||||
|
Me.lbl_uiversion.TabIndex = 6
|
||||||
|
Me.lbl_uiversion.Text = "2"
|
||||||
|
Me.lbl_uiversion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||||
|
'
|
||||||
|
'lbl_pcname
|
||||||
|
'
|
||||||
|
Me.lbl_pcname.FlatStyle = System.Windows.Forms.FlatStyle.System
|
||||||
|
Me.lbl_pcname.Font = New System.Drawing.Font("MS Reference Sans Serif", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.lbl_pcname.ForeColor = System.Drawing.Color.Black
|
||||||
|
Me.lbl_pcname.Location = New System.Drawing.Point(10, 59)
|
||||||
|
Me.lbl_pcname.Name = "lbl_pcname"
|
||||||
|
Me.lbl_pcname.RightToLeft = System.Windows.Forms.RightToLeft.No
|
||||||
|
Me.lbl_pcname.Size = New System.Drawing.Size(113, 13)
|
||||||
|
Me.lbl_pcname.TabIndex = 7
|
||||||
|
Me.lbl_pcname.Text = "1"
|
||||||
|
Me.lbl_pcname.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||||
|
'
|
||||||
|
'frm_mini
|
||||||
|
'
|
||||||
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
|
Me.BackColor = System.Drawing.Color.White
|
||||||
|
Me.ClientSize = New System.Drawing.Size(136, 95)
|
||||||
|
Me.Controls.Add(Me.lbl_pcname)
|
||||||
|
Me.Controls.Add(Me.lbl_uiversion)
|
||||||
|
Me.Controls.Add(Me.Label4)
|
||||||
|
Me.Controls.Add(Me.lbl_time)
|
||||||
|
Me.Controls.Add(Me.Label3)
|
||||||
|
Me.Controls.Add(Me.Label2)
|
||||||
|
Me.Controls.Add(Me.lbl_user)
|
||||||
|
Me.Controls.Add(Me.lbl_status)
|
||||||
|
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
|
||||||
|
Me.Name = "frm_mini"
|
||||||
|
Me.Text = "Mini Tracker"
|
||||||
|
Me.TopMost = True
|
||||||
|
Me.TransparencyKey = System.Drawing.Color.White
|
||||||
|
Me.ResumeLayout(False)
|
||||||
|
Me.PerformLayout()
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Friend WithEvents lbl_status As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents lbl_user As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents Label2 As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents Label3 As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents lbl_time As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents Label4 As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents lbl_uiversion As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents lbl_pcname As System.Windows.Forms.Label
|
||||||
|
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,11 @@
|
|||||||
|
Public Class frm_mini
|
||||||
|
|
||||||
|
Private Sub frm_mini_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||||
|
Me.Opacity = 0.6
|
||||||
|
Me.Left = Screen.PrimaryScreen.WorkingArea.Width - Me.Width
|
||||||
|
Me.Top = Screen.PrimaryScreen.WorkingArea.Height - Me.Height - 50
|
||||||
|
|
||||||
|
Me.ShowInTaskbar = False
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
Generated
+229
@@ -0,0 +1,229 @@
|
|||||||
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||||
|
Partial Class frm_changeui
|
||||||
|
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.bw_changeui = New System.ComponentModel.BackgroundWorker()
|
||||||
|
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
|
||||||
|
Me.lbl_testhead_warning = New System.Windows.Forms.Label()
|
||||||
|
Me.lbl_skip = New System.Windows.Forms.Label()
|
||||||
|
Me.lbl_caldata_warning = New System.Windows.Forms.Label()
|
||||||
|
Me.pic_chk4 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.Label4 = New System.Windows.Forms.Label()
|
||||||
|
Me.pic_chk3 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.Label3 = New System.Windows.Forms.Label()
|
||||||
|
Me.pic_chk2 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.lbl_caldata = New System.Windows.Forms.Label()
|
||||||
|
Me.pic_chk1 = New System.Windows.Forms.PictureBox()
|
||||||
|
Me.Label1 = New System.Windows.Forms.Label()
|
||||||
|
Me.Button1 = New System.Windows.Forms.Button()
|
||||||
|
Me.GroupBox1.SuspendLayout()
|
||||||
|
CType(Me.pic_chk4, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
CType(Me.pic_chk3, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
CType(Me.pic_chk2, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
CType(Me.pic_chk1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
Me.SuspendLayout()
|
||||||
|
'
|
||||||
|
'bw_changeui
|
||||||
|
'
|
||||||
|
Me.bw_changeui.WorkerReportsProgress = True
|
||||||
|
Me.bw_changeui.WorkerSupportsCancellation = True
|
||||||
|
'
|
||||||
|
'GroupBox1
|
||||||
|
'
|
||||||
|
Me.GroupBox1.Controls.Add(Me.lbl_testhead_warning)
|
||||||
|
Me.GroupBox1.Controls.Add(Me.lbl_skip)
|
||||||
|
Me.GroupBox1.Controls.Add(Me.lbl_caldata_warning)
|
||||||
|
Me.GroupBox1.Controls.Add(Me.pic_chk4)
|
||||||
|
Me.GroupBox1.Controls.Add(Me.Label4)
|
||||||
|
Me.GroupBox1.Controls.Add(Me.pic_chk3)
|
||||||
|
Me.GroupBox1.Controls.Add(Me.Label3)
|
||||||
|
Me.GroupBox1.Controls.Add(Me.pic_chk2)
|
||||||
|
Me.GroupBox1.Controls.Add(Me.lbl_caldata)
|
||||||
|
Me.GroupBox1.Controls.Add(Me.pic_chk1)
|
||||||
|
Me.GroupBox1.Controls.Add(Me.Label1)
|
||||||
|
Me.GroupBox1.Location = New System.Drawing.Point(9, 2)
|
||||||
|
Me.GroupBox1.Name = "GroupBox1"
|
||||||
|
Me.GroupBox1.Size = New System.Drawing.Size(271, 150)
|
||||||
|
Me.GroupBox1.TabIndex = 16
|
||||||
|
Me.GroupBox1.TabStop = False
|
||||||
|
'
|
||||||
|
'lbl_testhead_warning
|
||||||
|
'
|
||||||
|
Me.lbl_testhead_warning.AutoSize = True
|
||||||
|
Me.lbl_testhead_warning.ForeColor = System.Drawing.Color.Red
|
||||||
|
Me.lbl_testhead_warning.Location = New System.Drawing.Point(25, 38)
|
||||||
|
Me.lbl_testhead_warning.Name = "lbl_testhead_warning"
|
||||||
|
Me.lbl_testhead_warning.Size = New System.Drawing.Size(0, 13)
|
||||||
|
Me.lbl_testhead_warning.TabIndex = 27
|
||||||
|
'
|
||||||
|
'lbl_skip
|
||||||
|
'
|
||||||
|
Me.lbl_skip.AutoSize = True
|
||||||
|
Me.lbl_skip.Cursor = System.Windows.Forms.Cursors.Hand
|
||||||
|
Me.lbl_skip.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.lbl_skip.ForeColor = System.Drawing.Color.MediumBlue
|
||||||
|
Me.lbl_skip.Location = New System.Drawing.Point(209, 23)
|
||||||
|
Me.lbl_skip.Name = "lbl_skip"
|
||||||
|
Me.lbl_skip.Size = New System.Drawing.Size(26, 13)
|
||||||
|
Me.lbl_skip.TabIndex = 26
|
||||||
|
Me.lbl_skip.Text = "Skip"
|
||||||
|
Me.lbl_skip.Visible = False
|
||||||
|
'
|
||||||
|
'lbl_caldata_warning
|
||||||
|
'
|
||||||
|
Me.lbl_caldata_warning.AutoSize = True
|
||||||
|
Me.lbl_caldata_warning.ForeColor = System.Drawing.Color.Red
|
||||||
|
Me.lbl_caldata_warning.Location = New System.Drawing.Point(25, 71)
|
||||||
|
Me.lbl_caldata_warning.Name = "lbl_caldata_warning"
|
||||||
|
Me.lbl_caldata_warning.Size = New System.Drawing.Size(0, 13)
|
||||||
|
Me.lbl_caldata_warning.TabIndex = 24
|
||||||
|
'
|
||||||
|
'pic_chk4
|
||||||
|
'
|
||||||
|
Me.pic_chk4.BackColor = System.Drawing.Color.FromArgb(CType(CType(100, Byte), Integer), CType(CType(100, Byte), Integer), CType(CType(100, Byte), Integer))
|
||||||
|
Me.pic_chk4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None
|
||||||
|
Me.pic_chk4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.pic_chk4.Location = New System.Drawing.Point(12, 122)
|
||||||
|
Me.pic_chk4.Name = "pic_chk4"
|
||||||
|
Me.pic_chk4.Size = New System.Drawing.Size(9, 9)
|
||||||
|
Me.pic_chk4.TabIndex = 23
|
||||||
|
Me.pic_chk4.TabStop = False
|
||||||
|
'
|
||||||
|
'Label4
|
||||||
|
'
|
||||||
|
Me.Label4.AutoSize = True
|
||||||
|
Me.Label4.ForeColor = System.Drawing.SystemColors.ControlDark
|
||||||
|
Me.Label4.Location = New System.Drawing.Point(25, 120)
|
||||||
|
Me.Label4.Name = "Label4"
|
||||||
|
Me.Label4.Size = New System.Drawing.Size(128, 13)
|
||||||
|
Me.Label4.TabIndex = 22
|
||||||
|
Me.Label4.Text = "Please turn ON test head"
|
||||||
|
'
|
||||||
|
'pic_chk3
|
||||||
|
'
|
||||||
|
Me.pic_chk3.BackColor = System.Drawing.Color.FromArgb(CType(CType(100, Byte), Integer), CType(CType(100, Byte), Integer), CType(CType(100, Byte), Integer))
|
||||||
|
Me.pic_chk3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None
|
||||||
|
Me.pic_chk3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.pic_chk3.Location = New System.Drawing.Point(12, 90)
|
||||||
|
Me.pic_chk3.Name = "pic_chk3"
|
||||||
|
Me.pic_chk3.Size = New System.Drawing.Size(9, 9)
|
||||||
|
Me.pic_chk3.TabIndex = 21
|
||||||
|
Me.pic_chk3.TabStop = False
|
||||||
|
'
|
||||||
|
'Label3
|
||||||
|
'
|
||||||
|
Me.Label3.AutoSize = True
|
||||||
|
Me.Label3.ForeColor = System.Drawing.SystemColors.ControlDark
|
||||||
|
Me.Label3.Location = New System.Drawing.Point(25, 88)
|
||||||
|
Me.Label3.Name = "Label3"
|
||||||
|
Me.Label3.Size = New System.Drawing.Size(78, 13)
|
||||||
|
Me.Label3.TabIndex = 20
|
||||||
|
Me.Label3.Text = "Run userel.bat"
|
||||||
|
'
|
||||||
|
'pic_chk2
|
||||||
|
'
|
||||||
|
Me.pic_chk2.BackColor = System.Drawing.Color.FromArgb(CType(CType(100, Byte), Integer), CType(CType(100, Byte), Integer), CType(CType(100, Byte), Integer))
|
||||||
|
Me.pic_chk2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None
|
||||||
|
Me.pic_chk2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.pic_chk2.Location = New System.Drawing.Point(12, 57)
|
||||||
|
Me.pic_chk2.Name = "pic_chk2"
|
||||||
|
Me.pic_chk2.Size = New System.Drawing.Size(9, 9)
|
||||||
|
Me.pic_chk2.TabIndex = 19
|
||||||
|
Me.pic_chk2.TabStop = False
|
||||||
|
'
|
||||||
|
'lbl_caldata
|
||||||
|
'
|
||||||
|
Me.lbl_caldata.AutoSize = True
|
||||||
|
Me.lbl_caldata.ForeColor = System.Drawing.SystemColors.ControlDark
|
||||||
|
Me.lbl_caldata.Location = New System.Drawing.Point(25, 55)
|
||||||
|
Me.lbl_caldata.Name = "lbl_caldata"
|
||||||
|
Me.lbl_caldata.Size = New System.Drawing.Size(165, 13)
|
||||||
|
Me.lbl_caldata.TabIndex = 18
|
||||||
|
Me.lbl_caldata.Text = "Copying caldata_3171 to caldata"
|
||||||
|
'
|
||||||
|
'pic_chk1
|
||||||
|
'
|
||||||
|
Me.pic_chk1.BackColor = System.Drawing.Color.FromArgb(CType(CType(100, Byte), Integer), CType(CType(100, Byte), Integer), CType(CType(100, Byte), Integer))
|
||||||
|
Me.pic_chk1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None
|
||||||
|
Me.pic_chk1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||||
|
Me.pic_chk1.Location = New System.Drawing.Point(12, 25)
|
||||||
|
Me.pic_chk1.Name = "pic_chk1"
|
||||||
|
Me.pic_chk1.Size = New System.Drawing.Size(9, 9)
|
||||||
|
Me.pic_chk1.TabIndex = 17
|
||||||
|
Me.pic_chk1.TabStop = False
|
||||||
|
'
|
||||||
|
'Label1
|
||||||
|
'
|
||||||
|
Me.Label1.AutoSize = True
|
||||||
|
Me.Label1.Location = New System.Drawing.Point(25, 23)
|
||||||
|
Me.Label1.Name = "Label1"
|
||||||
|
Me.Label1.Size = New System.Drawing.Size(178, 13)
|
||||||
|
Me.Label1.TabIndex = 16
|
||||||
|
Me.Label1.Text = "Please manually turn OFF test head"
|
||||||
|
'
|
||||||
|
'Button1
|
||||||
|
'
|
||||||
|
Me.Button1.Location = New System.Drawing.Point(9, 158)
|
||||||
|
Me.Button1.Name = "Button1"
|
||||||
|
Me.Button1.Size = New System.Drawing.Size(271, 26)
|
||||||
|
Me.Button1.TabIndex = 26
|
||||||
|
Me.Button1.Text = "Cancel"
|
||||||
|
Me.Button1.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'frm_changeui
|
||||||
|
'
|
||||||
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
|
Me.ClientSize = New System.Drawing.Size(289, 190)
|
||||||
|
Me.Controls.Add(Me.Button1)
|
||||||
|
Me.Controls.Add(Me.GroupBox1)
|
||||||
|
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
|
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
||||||
|
Me.MaximizeBox = False
|
||||||
|
Me.Name = "frm_changeui"
|
||||||
|
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
|
||||||
|
Me.Text = "Change UI Progress"
|
||||||
|
Me.GroupBox1.ResumeLayout(False)
|
||||||
|
Me.GroupBox1.PerformLayout()
|
||||||
|
CType(Me.pic_chk4, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
CType(Me.pic_chk3, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
CType(Me.pic_chk2, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
CType(Me.pic_chk1, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
Me.ResumeLayout(False)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Friend WithEvents bw_changeui As System.ComponentModel.BackgroundWorker
|
||||||
|
Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
|
||||||
|
Friend WithEvents lbl_testhead_warning As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents lbl_skip As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents lbl_caldata_warning As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents pic_chk4 As System.Windows.Forms.PictureBox
|
||||||
|
Friend WithEvents Label4 As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents pic_chk3 As System.Windows.Forms.PictureBox
|
||||||
|
Friend WithEvents Label3 As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents pic_chk2 As System.Windows.Forms.PictureBox
|
||||||
|
Friend WithEvents lbl_caldata As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents pic_chk1 As System.Windows.Forms.PictureBox
|
||||||
|
Friend WithEvents Label1 As System.Windows.Forms.Label
|
||||||
|
Friend WithEvents Button1 As System.Windows.Forms.Button
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,123 @@
|
|||||||
|
<?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>
|
||||||
|
<metadata name="bw_changeui.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
|
</root>
|
||||||
@@ -0,0 +1,162 @@
|
|||||||
|
Public Class frm_changeui
|
||||||
|
Dim skip As Boolean = False
|
||||||
|
Dim ongoing As Boolean = True
|
||||||
|
Public targetui As String
|
||||||
|
|
||||||
|
Private Sub frm_changeui_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
|
||||||
|
If ongoing Then
|
||||||
|
If vbNo = MsgBox("Change UI is still in progress." & vbNewLine & "Are you sure you want to cancel?" & vbNewLine & "(This may cause unexpected behavior)", vbYesNo + vbExclamation, "Confirm") Then
|
||||||
|
e.Cancel = True
|
||||||
|
Else
|
||||||
|
bw_changeui.CancelAsync()
|
||||||
|
Form1.WindowState = FormWindowState.Normal
|
||||||
|
End If
|
||||||
|
Else
|
||||||
|
Form1.WindowState = FormWindowState.Normal
|
||||||
|
End If
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub frm_changeui_Load(sender As Object, e As EventArgs) Handles Me.Load
|
||||||
|
Form1.WindowState = FormWindowState.Minimized
|
||||||
|
bw_changeui.RunWorkerAsync()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
Private Sub frm_changeui_Shown(sender As Object, e As EventArgs) Handles Me.Shown
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
Private Sub lbl_skip_MouseUp(sender As Object, e As MouseEventArgs)
|
||||||
|
skip = True
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub Button1_Click(sender As Object, e As EventArgs)
|
||||||
|
Me.Close()
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub bw_changeui_DoWork(sender As Object, e As System.ComponentModel.DoWorkEventArgs) Handles bw_changeui.DoWork
|
||||||
|
ongoing = True
|
||||||
|
lbl_caldata.Text = "Copying ""caldata_" & targetui.Replace(".", "") & """ to ""caldata"""
|
||||||
|
lbl_caldata_warning.Text = ""
|
||||||
|
lbl_testhead_warning.Text = ""
|
||||||
|
|
||||||
|
Label1.ForeColor = Color.Black
|
||||||
|
lbl_caldata.ForeColor = Color.Gray
|
||||||
|
Label3.ForeColor = Color.Gray
|
||||||
|
Label4.ForeColor = Color.Gray
|
||||||
|
Dim ping_result As Boolean = True
|
||||||
|
While (skip = False And ping_result = True)
|
||||||
|
If My.Computer.Network.IsAvailable Then
|
||||||
|
ping_result = My.Computer.Network.Ping("10.1.1.1")
|
||||||
|
End If
|
||||||
|
System.Threading.Thread.Sleep(1000)
|
||||||
|
Application.DoEvents()
|
||||||
|
End While
|
||||||
|
|
||||||
|
If skip = True Then
|
||||||
|
lbl_testhead_warning.Text = "Skipped"
|
||||||
|
pic_chk1.BackColor = Color.Red
|
||||||
|
Else
|
||||||
|
pic_chk1.BackColor = Color.LimeGreen
|
||||||
|
End If
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
skip = False
|
||||||
|
|
||||||
|
|
||||||
|
Label1.ForeColor = Color.Gray
|
||||||
|
lbl_caldata.ForeColor = Color.Black
|
||||||
|
Label3.ForeColor = Color.Gray
|
||||||
|
Label4.ForeColor = Color.Gray
|
||||||
|
|
||||||
|
Dim tempctr As Integer = 50
|
||||||
|
While (tempctr > 0)
|
||||||
|
System.Threading.Thread.Sleep(100)
|
||||||
|
Application.DoEvents()
|
||||||
|
tempctr -= 1
|
||||||
|
End While
|
||||||
|
'Copy caldata
|
||||||
|
Dim new_caldata_path As String = "c:\nextest\" & "caldata_" & targetui.Replace(".", "")
|
||||||
|
Dim old_caldata_path As String = "c:\nextest\caldata"
|
||||||
|
Dim default_caldata_path As String = "c:\nextest\" & "caldata_" & targetui.Substring(0, 2) & "xxx"
|
||||||
|
If FileIO.FileSystem.DirectoryExists(new_caldata_path) And System.IO.Directory.GetFiles(new_caldata_path).Count > 0 Then
|
||||||
|
If FileIO.FileSystem.DirectoryExists(old_caldata_path) Then
|
||||||
|
FileIO.FileSystem.DeleteDirectory(old_caldata_path, FileIO.DeleteDirectoryOption.DeleteAllContents)
|
||||||
|
|
||||||
|
Else
|
||||||
|
FileIO.FileSystem.CreateDirectory(old_caldata_path)
|
||||||
|
End If
|
||||||
|
|
||||||
|
FileIO.FileSystem.CopyDirectory(new_caldata_path, old_caldata_path, True)
|
||||||
|
pic_chk2.BackColor = Color.LimeGreen
|
||||||
|
|
||||||
|
ElseIf FileIO.FileSystem.DirectoryExists(default_caldata_path) And System.IO.Directory.GetFiles(default_caldata_path).Count > 0 Then
|
||||||
|
If FileIO.FileSystem.DirectoryExists(old_caldata_path) Then
|
||||||
|
FileIO.FileSystem.DeleteDirectory(old_caldata_path, FileIO.DeleteDirectoryOption.DeleteAllContents)
|
||||||
|
|
||||||
|
Else
|
||||||
|
FileIO.FileSystem.CreateDirectory(old_caldata_path)
|
||||||
|
End If
|
||||||
|
|
||||||
|
FileIO.FileSystem.CopyDirectory(default_caldata_path, old_caldata_path, True)
|
||||||
|
pic_chk2.BackColor = Color.Black
|
||||||
|
lbl_caldata_warning.Text = "Copying from ""caldata_" & targetui.Substring(0, 2) & "xxx"" to ""caldata"""
|
||||||
|
Else
|
||||||
|
pic_chk2.BackColor = Color.Red
|
||||||
|
lbl_caldata_warning.Text = "No available caldata for " & targetui
|
||||||
|
MsgBox("No available caldata for " & targetui & vbNewLine & "Change UI will abort", vbOKOnly + vbCritical, "Abort")
|
||||||
|
ongoing = False
|
||||||
|
Me.Close()
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
|
|
||||||
|
skip = False
|
||||||
|
|
||||||
|
|
||||||
|
Label1.ForeColor = Color.Gray
|
||||||
|
lbl_caldata.ForeColor = Color.Gray
|
||||||
|
Label3.ForeColor = Color.Black
|
||||||
|
Label4.ForeColor = Color.Gray
|
||||||
|
tempctr = 50
|
||||||
|
While (tempctr > 0)
|
||||||
|
System.Threading.Thread.Sleep(100)
|
||||||
|
Application.DoEvents()
|
||||||
|
tempctr -= 1
|
||||||
|
End While
|
||||||
|
|
||||||
|
Me.WindowState = FormWindowState.Minimized
|
||||||
|
|
||||||
|
'Run userel.bat
|
||||||
|
If FileIO.FileSystem.FileExists("c:\nextest\" & targetui & "\utils\userel.bat") = True Then
|
||||||
|
Shell("c:\nextest\" & targetui & "\utils\userel.bat", AppWinStyle.NormalFocus, True)
|
||||||
|
End If
|
||||||
|
pic_chk3.BackColor = Color.LimeGreen
|
||||||
|
|
||||||
|
Me.WindowState = FormWindowState.Normal
|
||||||
|
|
||||||
|
Label1.ForeColor = Color.Gray
|
||||||
|
lbl_caldata.ForeColor = Color.Gray
|
||||||
|
Label3.ForeColor = Color.Gray
|
||||||
|
Label4.ForeColor = Color.Black
|
||||||
|
|
||||||
|
tempctr = 40
|
||||||
|
While (tempctr > 0)
|
||||||
|
System.Threading.Thread.Sleep(100)
|
||||||
|
Application.DoEvents()
|
||||||
|
tempctr -= 1
|
||||||
|
End While
|
||||||
|
ongoing = False
|
||||||
|
pic_chk4.BackColor = Color.LimeGreen
|
||||||
|
|
||||||
|
Button1.Text = "Close"
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub lbl_skip_Click(sender As Object, e As EventArgs)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
End Class
|
||||||
+38
@@ -0,0 +1,38 @@
|
|||||||
|
'------------------------------------------------------------------------------
|
||||||
|
' <auto-generated>
|
||||||
|
' This code was generated by a tool.
|
||||||
|
' Runtime Version:4.0.30319.18408
|
||||||
|
'
|
||||||
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
' the code is regenerated.
|
||||||
|
' </auto-generated>
|
||||||
|
'------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Option Strict On
|
||||||
|
Option Explicit On
|
||||||
|
|
||||||
|
|
||||||
|
Namespace My
|
||||||
|
|
||||||
|
'NOTE: This file is auto-generated; do not modify it directly. To make changes,
|
||||||
|
' or if you encounter build errors in this file, go to the Project Designer
|
||||||
|
' (go to Project Properties or double-click the My Project node in
|
||||||
|
' Solution Explorer), and make changes on the Application tab.
|
||||||
|
'
|
||||||
|
Partial Friend Class MyApplication
|
||||||
|
|
||||||
|
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
||||||
|
Public Sub New()
|
||||||
|
MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows)
|
||||||
|
Me.IsSingleInstance = true
|
||||||
|
Me.EnableVisualStyles = true
|
||||||
|
Me.SaveMySettingsOnExit = true
|
||||||
|
Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
||||||
|
Protected Overrides Sub OnCreateMainForm()
|
||||||
|
Me.MainForm = Global.nxtuitrack.Form1
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
|
End Namespace
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<MySubMain>true</MySubMain>
|
||||||
|
<MainForm>Form1</MainForm>
|
||||||
|
<SingleInstance>true</SingleInstance>
|
||||||
|
<ShutdownMode>0</ShutdownMode>
|
||||||
|
<EnableVisualStyles>true</EnableVisualStyles>
|
||||||
|
<AuthenticationMode>0</AuthenticationMode>
|
||||||
|
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
|
||||||
|
</MyApplicationData>
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.Reflection
|
||||||
|
Imports System.Runtime.InteropServices
|
||||||
|
|
||||||
|
' General Information about an assembly is controlled through the following
|
||||||
|
' set of attributes. Change these attribute values to modify the information
|
||||||
|
' associated with an assembly.
|
||||||
|
|
||||||
|
' Review the values of the assembly attributes
|
||||||
|
|
||||||
|
<Assembly: AssemblyTitle("Nextest UI Tracker")>
|
||||||
|
<Assembly: AssemblyDescription("")>
|
||||||
|
<Assembly: AssemblyCompany("Lattice")>
|
||||||
|
<Assembly: AssemblyProduct("Nextest UI Tracker")>
|
||||||
|
<Assembly: AssemblyCopyright("Lattice © 2014")>
|
||||||
|
<Assembly: AssemblyTrademark("yetebreo@lattice.com")>
|
||||||
|
|
||||||
|
<Assembly: ComVisible(False)>
|
||||||
|
|
||||||
|
'The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
|
<Assembly: Guid("dcc8a864-24d3-4e48-a8d3-a12f988b7606")>
|
||||||
|
|
||||||
|
' Version information for an assembly consists of the following four values:
|
||||||
|
'
|
||||||
|
' Major Version
|
||||||
|
' Minor Version
|
||||||
|
' Build Number
|
||||||
|
' Revision
|
||||||
|
'
|
||||||
|
' You can specify all the values or you can default the Build and Revision Numbers
|
||||||
|
' by using the '*' as shown below:
|
||||||
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
|
<Assembly: AssemblyVersion("2.1.0.0")>
|
||||||
|
<Assembly: AssemblyFileVersion("2.1.0.0")>
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.Reflection
|
||||||
|
Imports System.Runtime.InteropServices
|
||||||
|
|
||||||
|
' General Information about an assembly is controlled through the following
|
||||||
|
' set of attributes. Change these attribute values to modify the information
|
||||||
|
' associated with an assembly.
|
||||||
|
|
||||||
|
' Review the values of the assembly attributes
|
||||||
|
|
||||||
|
<Assembly: AssemblyTitle("Nextest UI Tracker")>
|
||||||
|
<Assembly: AssemblyDescription("")>
|
||||||
|
<Assembly: AssemblyCompany("Lattice")>
|
||||||
|
<Assembly: AssemblyProduct("Nextest UI Tracker")>
|
||||||
|
<Assembly: AssemblyCopyright("Lattice © 2014")>
|
||||||
|
<Assembly: AssemblyTrademark("yetebreo@lattice.com")>
|
||||||
|
|
||||||
|
<Assembly: ComVisible(False)>
|
||||||
|
|
||||||
|
'The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
|
<Assembly: Guid("dcc8a864-24d3-4e48-a8d3-a12f988b7606")>
|
||||||
|
|
||||||
|
' Version information for an assembly consists of the following four values:
|
||||||
|
'
|
||||||
|
' Major Version
|
||||||
|
' Minor Version
|
||||||
|
' Build Number
|
||||||
|
' Revision
|
||||||
|
'
|
||||||
|
' You can specify all the values or you can default the Build and Revision Numbers
|
||||||
|
' by using the '*' as shown below:
|
||||||
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
|
<Assembly: AssemblyVersion("2.1.0.0")>
|
||||||
|
<Assembly: AssemblyFileVersion("2.1.0.0")>
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.Reflection
|
||||||
|
Imports System.Runtime.InteropServices
|
||||||
|
|
||||||
|
' General Information about an assembly is controlled through the following
|
||||||
|
' set of attributes. Change these attribute values to modify the information
|
||||||
|
' associated with an assembly.
|
||||||
|
|
||||||
|
' Review the values of the assembly attributes
|
||||||
|
|
||||||
|
<Assembly: AssemblyTitle("Nextest UI Tracker")>
|
||||||
|
<Assembly: AssemblyDescription("")>
|
||||||
|
<Assembly: AssemblyCompany("Lattice")>
|
||||||
|
<Assembly: AssemblyProduct("Nextest UI Tracker")>
|
||||||
|
<Assembly: AssemblyCopyright("Lattice © 2014")>
|
||||||
|
<Assembly: AssemblyTrademark("yetebreo@lattice.com")>
|
||||||
|
|
||||||
|
<Assembly: ComVisible(False)>
|
||||||
|
|
||||||
|
'The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
|
<Assembly: Guid("dcc8a864-24d3-4e48-a8d3-a12f988b7606")>
|
||||||
|
|
||||||
|
' Version information for an assembly consists of the following four values:
|
||||||
|
'
|
||||||
|
' Major Version
|
||||||
|
' Minor Version
|
||||||
|
' Build Number
|
||||||
|
' Revision
|
||||||
|
'
|
||||||
|
' You can specify all the values or you can default the Build and Revision Numbers
|
||||||
|
' by using the '*' as shown below:
|
||||||
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
|
<Assembly: AssemblyVersion("2.1.0.0")>
|
||||||
|
<Assembly: AssemblyFileVersion("2.1.0.0")>
|
||||||
+63
@@ -0,0 +1,63 @@
|
|||||||
|
'------------------------------------------------------------------------------
|
||||||
|
' <auto-generated>
|
||||||
|
' This code was generated by a tool.
|
||||||
|
' Runtime Version:4.0.30319.18408
|
||||||
|
'
|
||||||
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
' the code is regenerated.
|
||||||
|
' </auto-generated>
|
||||||
|
'------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Option Strict On
|
||||||
|
Option Explicit On
|
||||||
|
|
||||||
|
Imports System
|
||||||
|
|
||||||
|
Namespace My.Resources
|
||||||
|
|
||||||
|
'This class was auto-generated by the StronglyTypedResourceBuilder
|
||||||
|
'class via a tool like ResGen or Visual Studio.
|
||||||
|
'To add or remove a member, edit your .ResX file then rerun ResGen
|
||||||
|
'with the /str option, or rebuild your VS project.
|
||||||
|
'''<summary>
|
||||||
|
''' A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
|
'''</summary>
|
||||||
|
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _
|
||||||
|
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
|
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||||
|
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
|
||||||
|
Friend Module Resources
|
||||||
|
|
||||||
|
Private resourceMan As Global.System.Resources.ResourceManager
|
||||||
|
|
||||||
|
Private resourceCulture As Global.System.Globalization.CultureInfo
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Returns the cached ResourceManager instance used by this class.
|
||||||
|
'''</summary>
|
||||||
|
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
|
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
||||||
|
Get
|
||||||
|
If Object.ReferenceEquals(resourceMan, Nothing) Then
|
||||||
|
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("nxtuitrack.Resources", GetType(Resources).Assembly)
|
||||||
|
resourceMan = temp
|
||||||
|
End If
|
||||||
|
Return resourceMan
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Overrides the current thread's CurrentUICulture property for all
|
||||||
|
''' resource lookups using this strongly typed resource class.
|
||||||
|
'''</summary>
|
||||||
|
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
|
Friend Property Culture() As Global.System.Globalization.CultureInfo
|
||||||
|
Get
|
||||||
|
Return resourceCulture
|
||||||
|
End Get
|
||||||
|
Set
|
||||||
|
resourceCulture = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
End Module
|
||||||
|
End Namespace
|
||||||
@@ -0,0 +1,117 @@
|
|||||||
|
<?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.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: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" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
</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" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
</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=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
||||||
+73
@@ -0,0 +1,73 @@
|
|||||||
|
'------------------------------------------------------------------------------
|
||||||
|
' <auto-generated>
|
||||||
|
' This code was generated by a tool.
|
||||||
|
' Runtime Version:4.0.30319.18408
|
||||||
|
'
|
||||||
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
' the code is regenerated.
|
||||||
|
' </auto-generated>
|
||||||
|
'------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Option Strict On
|
||||||
|
Option Explicit On
|
||||||
|
|
||||||
|
|
||||||
|
Namespace My
|
||||||
|
|
||||||
|
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||||
|
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0"), _
|
||||||
|
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
|
Partial Friend NotInheritable Class MySettings
|
||||||
|
Inherits Global.System.Configuration.ApplicationSettingsBase
|
||||||
|
|
||||||
|
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings)
|
||||||
|
|
||||||
|
#Region "My.Settings Auto-Save Functionality"
|
||||||
|
#If _MyType = "WindowsForms" Then
|
||||||
|
Private Shared addedHandler As Boolean
|
||||||
|
|
||||||
|
Private Shared addedHandlerLockObject As New Object
|
||||||
|
|
||||||
|
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
|
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs)
|
||||||
|
If My.Application.SaveMySettingsOnExit Then
|
||||||
|
My.Settings.Save()
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
#End If
|
||||||
|
#End Region
|
||||||
|
|
||||||
|
Public Shared ReadOnly Property [Default]() As MySettings
|
||||||
|
Get
|
||||||
|
|
||||||
|
#If _MyType = "WindowsForms" Then
|
||||||
|
If Not addedHandler Then
|
||||||
|
SyncLock addedHandlerLockObject
|
||||||
|
If Not addedHandler Then
|
||||||
|
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
|
||||||
|
addedHandler = True
|
||||||
|
End If
|
||||||
|
End SyncLock
|
||||||
|
End If
|
||||||
|
#End If
|
||||||
|
Return defaultInstance
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
End Class
|
||||||
|
End Namespace
|
||||||
|
|
||||||
|
Namespace My
|
||||||
|
|
||||||
|
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
|
||||||
|
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
|
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
|
||||||
|
Friend Module MySettingsProperty
|
||||||
|
|
||||||
|
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
|
||||||
|
Friend ReadOnly Property Settings() As Global.nxtuitrack.My.MySettings
|
||||||
|
Get
|
||||||
|
Return Global.nxtuitrack.My.MySettings.Default
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
End Module
|
||||||
|
End Namespace
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" UseMySettingsClassName="true">
|
||||||
|
<Profiles>
|
||||||
|
<Profile Name="(Default)" />
|
||||||
|
</Profiles>
|
||||||
|
<Settings />
|
||||||
|
</SettingsFile>
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<assemblyIdentity version="2.0.0.0" name="MyApplication.app"/>
|
||||||
|
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
||||||
|
<security>
|
||||||
|
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<!-- UAC Manifest Options
|
||||||
|
If you want to change the Windows User Account Control level replace the
|
||||||
|
requestedExecutionLevel node with one of the following.
|
||||||
|
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||||
|
|
||||||
|
Specifying requestedExecutionLevel node will disable file and registry virtualization.
|
||||||
|
If you want to utilize File and Registry Virtualization for backward
|
||||||
|
compatibility then delete the requestedExecutionLevel node.
|
||||||
|
-->
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
|
||||||
|
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||||
|
<application>
|
||||||
|
<!-- A list of all Windows versions that this application is designed to work with.
|
||||||
|
Windows will automatically select the most compatible environment.-->
|
||||||
|
|
||||||
|
<!-- If your application is designed to work with Windows Vista, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"></supportedOS>-->
|
||||||
|
|
||||||
|
<!-- If your application is designed to work with Windows 7, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->
|
||||||
|
|
||||||
|
<!-- If your application is designed to work with Windows 8, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"></supportedOS>-->
|
||||||
|
|
||||||
|
<!-- If your application is designed to work with Windows 8.1, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>-->
|
||||||
|
|
||||||
|
</application>
|
||||||
|
</compatibility>
|
||||||
|
|
||||||
|
<!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
|
||||||
|
<!-- <dependency>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity
|
||||||
|
type="win32"
|
||||||
|
name="Microsoft.Windows.Common-Controls"
|
||||||
|
version="6.0.0.0"
|
||||||
|
processorArchitecture="*"
|
||||||
|
publicKeyToken="6595b64144ccf1df"
|
||||||
|
language="*"
|
||||||
|
/>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>-->
|
||||||
|
|
||||||
|
</asmv1:assembly>
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<assemblyIdentity name="nxtuitrack.application" version="2.1.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<description asmv2:publisher="nxtuitrack" asmv2:product="nxtuitrack" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<deployment install="true" mapFileExtensions="true" />
|
||||||
|
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<framework targetVersion="4.0" profile="Full" supportedRuntime="4.0.30319" />
|
||||||
|
</compatibleFrameworks>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" codebase="nxtuitrack.exe.manifest" size="4603">
|
||||||
|
<assemblyIdentity name="nxtuitrack.exe" version="2.1.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<dsig:DigestValue>/QUpZ520eCLB8jSOWn5cWT1LLqw=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
</asmv1:assembly>
|
||||||
Binary file not shown.
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
|
||||||
|
</configuration>
|
||||||
@@ -0,0 +1,79 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<asmv1:assemblyIdentity name="nxtuitrack.exe" version="2.1.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
|
||||||
|
<application />
|
||||||
|
<entryPoint>
|
||||||
|
<assemblyIdentity name="nxtuitrack" version="2.1.0.0" language="neutral" processorArchitecture="x86" />
|
||||||
|
<commandLine file="nxtuitrack.exe" parameters="" />
|
||||||
|
</entryPoint>
|
||||||
|
<trustInfo>
|
||||||
|
<security>
|
||||||
|
<applicationRequestMinimum>
|
||||||
|
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
|
||||||
|
<defaultAssemblyRequest permissionSetReference="Custom" />
|
||||||
|
</applicationRequestMinimum>
|
||||||
|
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<!-- UAC Manifest Options
|
||||||
|
If you want to change the Windows User Account Control level replace the
|
||||||
|
requestedExecutionLevel node with one of the following.
|
||||||
|
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||||
|
|
||||||
|
Specifying requestedExecutionLevel node will disable file and registry virtualization.
|
||||||
|
If you want to utilize File and Registry Virtualization for backward
|
||||||
|
compatibility then delete the requestedExecutionLevel node.
|
||||||
|
-->
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
<dependency>
|
||||||
|
<dependentOS>
|
||||||
|
<osVersionInfo>
|
||||||
|
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
|
||||||
|
</osVersionInfo>
|
||||||
|
</dependentOS>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
|
||||||
|
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="nxtuitrack.exe" size="71168">
|
||||||
|
<assemblyIdentity name="nxtuitrack" version="2.1.0.0" language="neutral" processorArchitecture="x86" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<dsig:DigestValue>TqvM17DU5Rs/VyZjkGLx0EDYlF0=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<file name="nxtuitrack.exe.config" size="183">
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<dsig:DigestValue>L7qGkMy/jF2CxamiJaXpM5NouL8=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</file>
|
||||||
|
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||||
|
<application>
|
||||||
|
<!-- A list of all Windows versions that this application is designed to work with.
|
||||||
|
Windows will automatically select the most compatible environment.-->
|
||||||
|
<!-- If your application is designed to work with Windows Vista, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"></supportedOS>-->
|
||||||
|
<!-- If your application is designed to work with Windows 7, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->
|
||||||
|
<!-- If your application is designed to work with Windows 8, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"></supportedOS>-->
|
||||||
|
<!-- If your application is designed to work with Windows 8.1, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>-->
|
||||||
|
</application>
|
||||||
|
</compatibility>
|
||||||
|
</asmv1:assembly>
|
||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
|
||||||
|
</configuration>
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<doc>
|
||||||
|
<assembly>
|
||||||
|
<name>
|
||||||
|
nxtuitrack
|
||||||
|
</name>
|
||||||
|
</assembly>
|
||||||
|
<members>
|
||||||
|
<member name="P:nxtuitrack.My.Resources.Resources.ResourceManager">
|
||||||
|
<summary>
|
||||||
|
Returns the cached ResourceManager instance used by this class.
|
||||||
|
</summary>
|
||||||
|
</member><member name="P:nxtuitrack.My.Resources.Resources.Culture">
|
||||||
|
<summary>
|
||||||
|
Overrides the current thread's CurrentUICulture property for all
|
||||||
|
resource lookups using this strongly typed resource class.
|
||||||
|
</summary>
|
||||||
|
</member><member name="T:nxtuitrack.My.Resources.Resources">
|
||||||
|
<summary>
|
||||||
|
A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
</members>
|
||||||
|
</doc>
|
||||||
@@ -0,0 +1,209 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{8D6B0CA5-5FE3-4974-9B53-537EEC8FF75D}</ProjectGuid>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<StartupObject>nxtuitrack.My.MyApplication</StartupObject>
|
||||||
|
<RootNamespace>nxtuitrack</RootNamespace>
|
||||||
|
<AssemblyName>nxtuitrack</AssemblyName>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<MyType>WindowsForms</MyType>
|
||||||
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||||
|
<TargetFrameworkProfile />
|
||||||
|
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||||
|
<PublishUrl>publish\</PublishUrl>
|
||||||
|
<Install>true</Install>
|
||||||
|
<InstallFrom>Disk</InstallFrom>
|
||||||
|
<UpdateEnabled>false</UpdateEnabled>
|
||||||
|
<UpdateMode>Foreground</UpdateMode>
|
||||||
|
<UpdateInterval>7</UpdateInterval>
|
||||||
|
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
||||||
|
<UpdatePeriodically>false</UpdatePeriodically>
|
||||||
|
<UpdateRequired>false</UpdateRequired>
|
||||||
|
<MapFileExtensions>true</MapFileExtensions>
|
||||||
|
<ApplicationRevision>0</ApplicationRevision>
|
||||||
|
<ApplicationVersion>2.1.0.0</ApplicationVersion>
|
||||||
|
<UseApplicationTrust>false</UseApplicationTrust>
|
||||||
|
<PublishWizardCompleted>true</PublishWizardCompleted>
|
||||||
|
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<DefineDebug>true</DefineDebug>
|
||||||
|
<DefineTrace>true</DefineTrace>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DocumentationFile>nxtuitrack.xml</DocumentationFile>
|
||||||
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||||
|
<Prefer32Bit>true</Prefer32Bit>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<DefineDebug>false</DefineDebug>
|
||||||
|
<DefineTrace>true</DefineTrace>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DocumentationFile>nxtuitrack.xml</DocumentationFile>
|
||||||
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||||
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<OptionExplicit>On</OptionExplicit>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<OptionCompare>Binary</OptionCompare>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<OptionStrict>Off</OptionStrict>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<OptionInfer>On</OptionInfer>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<ManifestCertificateThumbprint>CA87CBD81DC5E26CE5B39EC6D95E8B8610EFB9D4</ManifestCertificateThumbprint>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<ManifestKeyFile>nxtuitracker_TemporaryKey.pfx</ManifestKeyFile>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<GenerateManifests>true</GenerateManifests>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<SignManifests>true</SignManifests>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Deployment" />
|
||||||
|
<Reference Include="System.Drawing" />
|
||||||
|
<Reference Include="System.Windows.Forms" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Import Include="Microsoft.VisualBasic" />
|
||||||
|
<Import Include="System" />
|
||||||
|
<Import Include="System.Collections" />
|
||||||
|
<Import Include="System.Collections.Generic" />
|
||||||
|
<Import Include="System.Data" />
|
||||||
|
<Import Include="System.Drawing" />
|
||||||
|
<Import Include="System.Diagnostics" />
|
||||||
|
<Import Include="System.Windows.Forms" />
|
||||||
|
<Import Include="System.Linq" />
|
||||||
|
<Import Include="System.Xml.Linq" />
|
||||||
|
<Import Include="System.Threading.Tasks" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="ApplicationEvents.vb" />
|
||||||
|
<Compile Include="Form1.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form1.Designer.vb">
|
||||||
|
<DependentUpon>Form1.vb</DependentUpon>
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form2.Designer.vb">
|
||||||
|
<DependentUpon>Form2.vb</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form2.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form3.Designer.vb">
|
||||||
|
<DependentUpon>Form3.vb</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form3.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form4.Designer.vb">
|
||||||
|
<DependentUpon>Form4.vb</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form4.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||||
|
<Compile Include="My Project\Application.Designer.vb">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Application.myapp</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="My Project\Resources.Designer.vb">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
|
<DependentUpon>Resources.resx</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="My Project\Settings.Designer.vb">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Settings.settings</DependentUpon>
|
||||||
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
|
</Compile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Form1.resx">
|
||||||
|
<DependentUpon>Form1.vb</DependentUpon>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Form2.resx">
|
||||||
|
<DependentUpon>Form2.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Form3.resx">
|
||||||
|
<DependentUpon>Form3.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Form4.resx">
|
||||||
|
<DependentUpon>Form4.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="My Project\Resources.resx">
|
||||||
|
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
||||||
|
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="My Project\app.manifest" />
|
||||||
|
<None Include="My Project\Application.myapp">
|
||||||
|
<Generator>MyApplicationCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
||||||
|
</None>
|
||||||
|
<None Include="My Project\Settings.settings">
|
||||||
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
|
<CustomToolNamespace>My</CustomToolNamespace>
|
||||||
|
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||||
|
</None>
|
||||||
|
<None Include="App.config" />
|
||||||
|
<None Include="nxtuitracker_TemporaryKey.pfx" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<BootstrapperPackage Include=".NETFramework,Version=v4.5">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
|
||||||
|
<Install>true</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
||||||
|
<Install>false</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
||||||
|
<Install>false</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<PublishUrlHistory>publish\</PublishUrlHistory>
|
||||||
|
<InstallUrlHistory />
|
||||||
|
<SupportUrlHistory />
|
||||||
|
<UpdateUrlHistory />
|
||||||
|
<BootstrapperUrlHistory />
|
||||||
|
<ErrorReportUrlHistory />
|
||||||
|
<FallbackCulture>en-US</FallbackCulture>
|
||||||
|
<VerifyUploadedFiles>false</VerifyUploadedFiles>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<EnableSecurityDebugging>false</EnableSecurityDebugging>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,209 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{8D6B0CA5-5FE3-4974-9B53-537EEC8FF75D}</ProjectGuid>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<StartupObject>nxtuitrack.My.MyApplication</StartupObject>
|
||||||
|
<RootNamespace>nxtuitrack</RootNamespace>
|
||||||
|
<AssemblyName>nxtuitrack</AssemblyName>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<MyType>WindowsForms</MyType>
|
||||||
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||||
|
<TargetFrameworkProfile />
|
||||||
|
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||||
|
<PublishUrl>publish\</PublishUrl>
|
||||||
|
<Install>true</Install>
|
||||||
|
<InstallFrom>Disk</InstallFrom>
|
||||||
|
<UpdateEnabled>false</UpdateEnabled>
|
||||||
|
<UpdateMode>Foreground</UpdateMode>
|
||||||
|
<UpdateInterval>7</UpdateInterval>
|
||||||
|
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
||||||
|
<UpdatePeriodically>false</UpdatePeriodically>
|
||||||
|
<UpdateRequired>false</UpdateRequired>
|
||||||
|
<MapFileExtensions>true</MapFileExtensions>
|
||||||
|
<ApplicationRevision>0</ApplicationRevision>
|
||||||
|
<ApplicationVersion>2.1.0.0</ApplicationVersion>
|
||||||
|
<UseApplicationTrust>false</UseApplicationTrust>
|
||||||
|
<PublishWizardCompleted>true</PublishWizardCompleted>
|
||||||
|
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<DefineDebug>true</DefineDebug>
|
||||||
|
<DefineTrace>true</DefineTrace>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DocumentationFile>nxtuitrack.xml</DocumentationFile>
|
||||||
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||||
|
<Prefer32Bit>true</Prefer32Bit>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<DefineDebug>false</DefineDebug>
|
||||||
|
<DefineTrace>true</DefineTrace>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DocumentationFile>nxtuitrack.xml</DocumentationFile>
|
||||||
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||||
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<OptionExplicit>On</OptionExplicit>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<OptionCompare>Binary</OptionCompare>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<OptionStrict>Off</OptionStrict>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<OptionInfer>On</OptionInfer>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<ManifestCertificateThumbprint>CA87CBD81DC5E26CE5B39EC6D95E8B8610EFB9D4</ManifestCertificateThumbprint>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<ManifestKeyFile>nxtuitracker_TemporaryKey.pfx</ManifestKeyFile>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<GenerateManifests>true</GenerateManifests>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<SignManifests>true</SignManifests>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Deployment" />
|
||||||
|
<Reference Include="System.Drawing" />
|
||||||
|
<Reference Include="System.Windows.Forms" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Import Include="Microsoft.VisualBasic" />
|
||||||
|
<Import Include="System" />
|
||||||
|
<Import Include="System.Collections" />
|
||||||
|
<Import Include="System.Collections.Generic" />
|
||||||
|
<Import Include="System.Data" />
|
||||||
|
<Import Include="System.Drawing" />
|
||||||
|
<Import Include="System.Diagnostics" />
|
||||||
|
<Import Include="System.Windows.Forms" />
|
||||||
|
<Import Include="System.Linq" />
|
||||||
|
<Import Include="System.Xml.Linq" />
|
||||||
|
<Import Include="System.Threading.Tasks" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="ApplicationEvents.vb" />
|
||||||
|
<Compile Include="Form1.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form1.Designer.vb">
|
||||||
|
<DependentUpon>Form1.vb</DependentUpon>
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form2.Designer.vb">
|
||||||
|
<DependentUpon>Form2.vb</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form2.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form3.Designer.vb">
|
||||||
|
<DependentUpon>Form3.vb</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form3.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form4.Designer.vb">
|
||||||
|
<DependentUpon>Form4.vb</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form4.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||||
|
<Compile Include="My Project\Application.Designer.vb">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Application.myapp</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="My Project\Resources.Designer.vb">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
|
<DependentUpon>Resources.resx</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="My Project\Settings.Designer.vb">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Settings.settings</DependentUpon>
|
||||||
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
|
</Compile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Form1.resx">
|
||||||
|
<DependentUpon>Form1.vb</DependentUpon>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Form2.resx">
|
||||||
|
<DependentUpon>Form2.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Form3.resx">
|
||||||
|
<DependentUpon>Form3.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Form4.resx">
|
||||||
|
<DependentUpon>Form4.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="My Project\Resources.resx">
|
||||||
|
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
||||||
|
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="My Project\app.manifest" />
|
||||||
|
<None Include="My Project\Application.myapp">
|
||||||
|
<Generator>MyApplicationCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
||||||
|
</None>
|
||||||
|
<None Include="My Project\Settings.settings">
|
||||||
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
|
<CustomToolNamespace>My</CustomToolNamespace>
|
||||||
|
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||||
|
</None>
|
||||||
|
<None Include="App.config" />
|
||||||
|
<None Include="nxtuitracker_TemporaryKey.pfx" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<BootstrapperPackage Include=".NETFramework,Version=v4.5">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
|
||||||
|
<Install>true</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
||||||
|
<Install>false</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
||||||
|
<Install>false</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
</Project>
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<assemblyIdentity name="nxtuitrack.application" version="2.1.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<description asmv2:publisher="nxtuitrack" asmv2:product="nxtuitrack" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<deployment install="true" mapFileExtensions="true" />
|
||||||
|
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<framework targetVersion="4.0" profile="Full" supportedRuntime="4.0.30319" />
|
||||||
|
</compatibleFrameworks>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" codebase="nxtuitrack.exe.manifest" size="4603">
|
||||||
|
<assemblyIdentity name="nxtuitrack.exe" version="2.1.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<dsig:DigestValue>/QUpZ520eCLB8jSOWn5cWT1LLqw=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
</asmv1:assembly>
|
||||||
Binary file not shown.
@@ -0,0 +1,79 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<asmv1:assemblyIdentity name="nxtuitrack.exe" version="2.1.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
|
||||||
|
<application />
|
||||||
|
<entryPoint>
|
||||||
|
<assemblyIdentity name="nxtuitrack" version="2.1.0.0" language="neutral" processorArchitecture="x86" />
|
||||||
|
<commandLine file="nxtuitrack.exe" parameters="" />
|
||||||
|
</entryPoint>
|
||||||
|
<trustInfo>
|
||||||
|
<security>
|
||||||
|
<applicationRequestMinimum>
|
||||||
|
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
|
||||||
|
<defaultAssemblyRequest permissionSetReference="Custom" />
|
||||||
|
</applicationRequestMinimum>
|
||||||
|
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<!-- UAC Manifest Options
|
||||||
|
If you want to change the Windows User Account Control level replace the
|
||||||
|
requestedExecutionLevel node with one of the following.
|
||||||
|
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||||
|
|
||||||
|
Specifying requestedExecutionLevel node will disable file and registry virtualization.
|
||||||
|
If you want to utilize File and Registry Virtualization for backward
|
||||||
|
compatibility then delete the requestedExecutionLevel node.
|
||||||
|
-->
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
<dependency>
|
||||||
|
<dependentOS>
|
||||||
|
<osVersionInfo>
|
||||||
|
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
|
||||||
|
</osVersionInfo>
|
||||||
|
</dependentOS>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
|
||||||
|
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="nxtuitrack.exe" size="71168">
|
||||||
|
<assemblyIdentity name="nxtuitrack" version="2.1.0.0" language="neutral" processorArchitecture="x86" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<dsig:DigestValue>TqvM17DU5Rs/VyZjkGLx0EDYlF0=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<file name="nxtuitrack.exe.config" size="183">
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<dsig:DigestValue>L7qGkMy/jF2CxamiJaXpM5NouL8=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</file>
|
||||||
|
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||||
|
<application>
|
||||||
|
<!-- A list of all Windows versions that this application is designed to work with.
|
||||||
|
Windows will automatically select the most compatible environment.-->
|
||||||
|
<!-- If your application is designed to work with Windows Vista, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"></supportedOS>-->
|
||||||
|
<!-- If your application is designed to work with Windows 7, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->
|
||||||
|
<!-- If your application is designed to work with Windows 8, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"></supportedOS>-->
|
||||||
|
<!-- If your application is designed to work with Windows 8.1, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>-->
|
||||||
|
</application>
|
||||||
|
</compatibility>
|
||||||
|
</asmv1:assembly>
|
||||||
@@ -0,0 +1,79 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<asmv1:assemblyIdentity name="nxtuitrack.exe" version="2.1.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
|
||||||
|
<application />
|
||||||
|
<entryPoint>
|
||||||
|
<assemblyIdentity name="nxtuitrack" version="2.1.0.0" language="neutral" processorArchitecture="x86" />
|
||||||
|
<commandLine file="nxtuitrack.exe" parameters="" />
|
||||||
|
</entryPoint>
|
||||||
|
<trustInfo>
|
||||||
|
<security>
|
||||||
|
<applicationRequestMinimum>
|
||||||
|
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
|
||||||
|
<defaultAssemblyRequest permissionSetReference="Custom" />
|
||||||
|
</applicationRequestMinimum>
|
||||||
|
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<!-- UAC Manifest Options
|
||||||
|
If you want to change the Windows User Account Control level replace the
|
||||||
|
requestedExecutionLevel node with one of the following.
|
||||||
|
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||||
|
|
||||||
|
Specifying requestedExecutionLevel node will disable file and registry virtualization.
|
||||||
|
If you want to utilize File and Registry Virtualization for backward
|
||||||
|
compatibility then delete the requestedExecutionLevel node.
|
||||||
|
-->
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
<dependency>
|
||||||
|
<dependentOS>
|
||||||
|
<osVersionInfo>
|
||||||
|
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
|
||||||
|
</osVersionInfo>
|
||||||
|
</dependentOS>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
|
||||||
|
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="nxtuitrack.exe" size="72192">
|
||||||
|
<assemblyIdentity name="nxtuitrack" version="2.1.0.0" language="neutral" processorArchitecture="x86" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<dsig:DigestValue>IPhqbER4+iuasuXYLJ7oq9FdX8U=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<file name="nxtuitrack.exe.config" size="183">
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<dsig:DigestValue>L7qGkMy/jF2CxamiJaXpM5NouL8=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</file>
|
||||||
|
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||||
|
<application>
|
||||||
|
<!-- A list of all Windows versions that this application is designed to work with.
|
||||||
|
Windows will automatically select the most compatible environment.-->
|
||||||
|
<!-- If your application is designed to work with Windows Vista, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"></supportedOS>-->
|
||||||
|
<!-- If your application is designed to work with Windows 7, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->
|
||||||
|
<!-- If your application is designed to work with Windows 8, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"></supportedOS>-->
|
||||||
|
<!-- If your application is designed to work with Windows 8.1, uncomment the following supportedOS node-->
|
||||||
|
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>-->
|
||||||
|
</application>
|
||||||
|
</compatibility>
|
||||||
|
</asmv1:assembly>
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<doc>
|
||||||
|
<assembly>
|
||||||
|
<name>
|
||||||
|
nxtuitrack
|
||||||
|
</name>
|
||||||
|
</assembly>
|
||||||
|
<members>
|
||||||
|
<member name="P:nxtuitrack.My.Resources.Resources.ResourceManager">
|
||||||
|
<summary>
|
||||||
|
Returns the cached ResourceManager instance used by this class.
|
||||||
|
</summary>
|
||||||
|
</member><member name="P:nxtuitrack.My.Resources.Resources.Culture">
|
||||||
|
<summary>
|
||||||
|
Overrides the current thread's CurrentUICulture property for all
|
||||||
|
resource lookups using this strongly typed resource class.
|
||||||
|
</summary>
|
||||||
|
</member><member name="T:nxtuitrack.My.Resources.Resources">
|
||||||
|
<summary>
|
||||||
|
A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
</members>
|
||||||
|
</doc>
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<assemblyIdentity name="nxtuitrack.application" version="2.1.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<description asmv2:publisher="nxtuitrack" asmv2:product="nxtuitrack" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<deployment install="true" mapFileExtensions="true" />
|
||||||
|
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<framework targetVersion="4.0" profile="Full" supportedRuntime="4.0.30319" />
|
||||||
|
</compatibleFrameworks>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" codebase="nxtuitrack.exe.manifest" size="4603">
|
||||||
|
<assemblyIdentity name="nxtuitrack.exe" version="2.1.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<dsig:DigestValue>Y2oc8mLY5f0uT6Na2cQTg99M5U4=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
</asmv1:assembly>
|
||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,17 @@
|
|||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\bin\Debug\nxtuitrack.exe.config
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\bin\Debug\nxtuitrack.exe.manifest
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\bin\Debug\nxtuitrack.application
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\bin\Debug\nxtuitrack.exe
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\bin\Debug\nxtuitrack.pdb
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\bin\Debug\nxtuitrack.xml
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.Form1.resources
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.frm_env.resources
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.frm_mini.resources
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.frm_changeui.resources
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.Resources.resources
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitracker.vbproj.GenerateResource.Cache
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.exe.manifest
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.application
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.exe
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.xml
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.pdb
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\bin\Debug\nxtuitrack.exe.config
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\bin\Debug\nxtuitrack.exe.manifest
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\bin\Debug\nxtuitrack.application
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\bin\Debug\nxtuitrack.exe
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\bin\Debug\nxtuitrack.pdb
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\bin\Debug\nxtuitrack.xml
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.Form1.resources
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.frm_env.resources
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.frm_mini.resources
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.frm_changeui.resources
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.Resources.resources
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitracker.vbproj.GenerateResource.Cache
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.exe.manifest
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.application
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.exe
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.xml
|
||||||
|
D:\Google Drive\Development\Visual Basic .NET\NextestUITracker.NET\nxtuitracker\nxtuitracker\obj\Debug\nxtuitrack.pdb
|
||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<assemblyIdentity name="nxtuitracker.application" version="1.0.0.0" publicKeyToken="8f568c8fa996ee03" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<description asmv2:publisher="Microsoft" asmv2:product="nxtuitracker" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<deployment install="true" mapFileExtensions="true" />
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" codebase="Application Files\nxtuitracker_1_0_0_0\nxtuitracker.exe.manifest" size="7648">
|
||||||
|
<assemblyIdentity name="nxtuitracker.exe" version="1.0.0.0" publicKeyToken="8f568c8fa996ee03" language="neutral" processorArchitecture="x86" type="win32" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<dsig:DigestValue>1sm65skmUm2hqDjEOZM/oBgnkPY=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<publisherIdentity name="CN=LSCHQ\yebreo" issuerKeyHash="68950aa4df7b13e6c9f019d03d6fdc741f426b76" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /><DigestValue>VZC6Dvh7biw2U04H742h5bgFiGY=</DigestValue></Reference></SignedInfo><SignatureValue>ohEEcoYjQ0QXtLMkXULBgq0mDucE3nnppBqYThhKar2YuVWoEETB0LRwiXL4eF4clTykBgXoTgfxKyLOq4zvj/xBBm1tfxg4HB9X1+ZVAzPIN4pQQQ8qU1IdltcCbIlyIYOly/EhJx6BLO0R2UCVhw275Z/GjX5/QAI9ou92Nbo=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>oi/RVzKF5ERlZdXcHNl7nxFXZy0HzpmzIvFzl/+4TZq8+LPTF5SEnRBgZjA1/Ir2qqpAx2vwhon07/PoLw0NDpMgVXndzEzhgqjoeVCjWvncix+O6ee3TD5z7wIVUhhFTJCOxjOzZZg4gOwUeq25RNqLiH30D8GuMNPVyLLemHs=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="668805b8e5a18def074e53362c6e7bf80eba9055" Description="" Url=""><as:assemblyIdentity name="nxtuitracker.application" version="1.0.0.0" publicKeyToken="8f568c8fa996ee03" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=LSCHQ\yebreo</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /><DigestValue>jaw+e9U08YdLZRCI06aCIaoM2xs=</DigestValue></Reference></SignedInfo><SignatureValue>XUuAxCQTZ2/WzKkqGXMO8VGHkb1Zc21t9QrDyeyvwiwOmr42Pbjp979TDXxkBOctT0o0PVLn245tpXAqp897zzYZwI/ClbciLIjZfZwmIFN0i6iN6ylDa3sqGHcFrpylLxUeWOXU9XzO6eSRbTiTdn5d9zJhgSd6fEAn/dcrAIQ=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>oi/RVzKF5ERlZdXcHNl7nxFXZy0HzpmzIvFzl/+4TZq8+LPTF5SEnRBgZjA1/Ir2qqpAx2vwhon07/PoLw0NDpMgVXndzEzhgqjoeVCjWvncix+O6ee3TD5z7wIVUhhFTJCOxjOzZZg4gOwUeq25RNqLiH30D8GuMNPVyLLemHs=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIByTCCATKgAwIBAgIQUseYgX4O061Bufu2e3DVhzANBgkqhkiG9w0BAQUFADAjMSEwHwYDVQQDHhgATABTAEMASABRAFwAeQBlAGIAcgBlAG8wHhcNMTQwMjI4MDUyNzE3WhcNMTUwMjI4MTEyNzE3WjAjMSEwHwYDVQQDHhgATABTAEMASABRAFwAeQBlAGIAcgBlAG8wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKIv0VcyheREZWXV3BzZe58RV2ctB86ZsyLxc5f/uE2avPiz0xeUhJ0QYGYwNfyK9qqqQMdr8IaJ9O/z6C8NDQ6TIFV53cxM4YKo6HlQo1r53Isfjunnt0w+c+8CFVIYRUyQjsYzs2WYOIDsFHqtuUTai4h99A/BrjDT1ciy3ph7AgMBAAEwDQYJKoZIhvcNAQEFBQADgYEAQyoxs7x9QfXJGDpPrWVvhJDpLgnSXAY+66wcxBt38Yas73q85yQ7xYF961YYkftgmmAG2R+QB5cZ2Bho+bGle1KTuTIHaf4hjbQ2d8oji9BSqvkMH9TTP+7uufGOrPMak/eB/8Z6WXvg/JsgNR8mSYciGm3zWt8b0v+ahcH2xgI=</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
|
||||||
+6
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
|
||||||
|
<supportedRuntime version="v2.0.50727"/></startup>
|
||||||
|
</configuration>
|
||||||
Binary file not shown.
@@ -0,0 +1,75 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<asmv1:assemblyIdentity name="nxtuitracker.exe" version="1.0.0.0" publicKeyToken="8f568c8fa996ee03" language="neutral" processorArchitecture="x86" type="win32" />
|
||||||
|
<application />
|
||||||
|
<entryPoint>
|
||||||
|
<assemblyIdentity name="nxtuitracker" version="1.0.0.0" language="neutral" processorArchitecture="x86" />
|
||||||
|
<commandLine file="nxtuitracker.exe" parameters="" />
|
||||||
|
</entryPoint>
|
||||||
|
<trustInfo>
|
||||||
|
<security>
|
||||||
|
<applicationRequestMinimum>
|
||||||
|
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
|
||||||
|
<defaultAssemblyRequest permissionSetReference="Custom" />
|
||||||
|
</applicationRequestMinimum>
|
||||||
|
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<!--
|
||||||
|
UAC Manifest Options
|
||||||
|
If you want to change the Windows User Account Control level replace the
|
||||||
|
requestedExecutionLevel node with one of the following.
|
||||||
|
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||||
|
|
||||||
|
If you want to utilize File and Registry Virtualization for backward
|
||||||
|
compatibility then delete the requestedExecutionLevel node.
|
||||||
|
-->
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
<dependency>
|
||||||
|
<dependentOS>
|
||||||
|
<osVersionInfo>
|
||||||
|
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
|
||||||
|
</osVersionInfo>
|
||||||
|
</dependentOS>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
|
||||||
|
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="2.0.50727.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
|
||||||
|
<assemblyIdentity name="System.Core" version="3.5.0.0" publicKeyToken="b77a5c561934e089" language="neutral" processorArchitecture="msil" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
|
||||||
|
<assemblyIdentity name="WindowsBase" version="3.0.0.0" publicKeyToken="31bf3856ad364e35" language="neutral" processorArchitecture="msil" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="nxtuitracker.exe" size="26112">
|
||||||
|
<assemblyIdentity name="nxtuitracker" version="1.0.0.0" language="neutral" processorArchitecture="x86" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<dsig:DigestValue>sN1z8uIQxwwsdFPt9K1WWFjq7FU=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<file name="nxtuitracker.exe.config" size="156">
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<dsig:DigestValue>L3I9DOWeEB/P2DpzjuMQmiwf8bM=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</file>
|
||||||
|
<publisherIdentity name="CN=LSCHQ\yebreo" issuerKeyHash="68950aa4df7b13e6c9f019d03d6fdc741f426b76" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /><DigestValue>f96zOtLmRLpYMBB5+iGQf80rcxw=</DigestValue></Reference></SignedInfo><SignatureValue>nxTvNRYv7P//YnNTp3g9xs64LUOnJvkLZLlDdbZ0Xcr/T+v6qLgpceE18vzFcwAn2GlhtPhhnIohFz2ghVPZpmAAb6mVbzbMkUwHWVeVyqhZG2OF0xAcnFyC8ReWNRL0mc1TkR9FMTRY12j4DXrDOUCBoKlzlaY1apmsRKg/Ya4=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>oi/RVzKF5ERlZdXcHNl7nxFXZy0HzpmzIvFzl/+4TZq8+LPTF5SEnRBgZjA1/Ir2qqpAx2vwhon07/PoLw0NDpMgVXndzEzhgqjoeVCjWvncix+O6ee3TD5z7wIVUhhFTJCOxjOzZZg4gOwUeq25RNqLiH30D8GuMNPVyLLemHs=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="1c732bcd7f9021fa79103058ba44e6d23ab3de7f" Description="" Url=""><as:assemblyIdentity name="nxtuitracker.exe" version="1.0.0.0" publicKeyToken="8f568c8fa996ee03" language="neutral" processorArchitecture="x86" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=LSCHQ\yebreo</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /><DigestValue>iPX8fYHHwYb2FKhZKp0ZFl1t6OI=</DigestValue></Reference></SignedInfo><SignatureValue>GGGWd7JSNYImotEDVY3GR7iw6iOLY5YMMaFjs49claD7dlJxz1cHf4/9RZ2xIU3X/00TN3aU1AZmpuR9YnAiG/rPSJACsVZqj3lrFbXTXwPHFVow3x+Ge1It13TvFRIeoCbir6vxlsP3d7Ktrdqs6w9Y5sk9eALg2G4r3YHPMKw=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>oi/RVzKF5ERlZdXcHNl7nxFXZy0HzpmzIvFzl/+4TZq8+LPTF5SEnRBgZjA1/Ir2qqpAx2vwhon07/PoLw0NDpMgVXndzEzhgqjoeVCjWvncix+O6ee3TD5z7wIVUhhFTJCOxjOzZZg4gOwUeq25RNqLiH30D8GuMNPVyLLemHs=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIByTCCATKgAwIBAgIQUseYgX4O061Bufu2e3DVhzANBgkqhkiG9w0BAQUFADAjMSEwHwYDVQQDHhgATABTAEMASABRAFwAeQBlAGIAcgBlAG8wHhcNMTQwMjI4MDUyNzE3WhcNMTUwMjI4MTEyNzE3WjAjMSEwHwYDVQQDHhgATABTAEMASABRAFwAeQBlAGIAcgBlAG8wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKIv0VcyheREZWXV3BzZe58RV2ctB86ZsyLxc5f/uE2avPiz0xeUhJ0QYGYwNfyK9qqqQMdr8IaJ9O/z6C8NDQ6TIFV53cxM4YKo6HlQo1r53Isfjunnt0w+c+8CFVIYRUyQjsYzs2WYOIDsFHqtuUTai4h99A/BrjDT1ciy3ph7AgMBAAEwDQYJKoZIhvcNAQEFBQADgYEAQyoxs7x9QfXJGDpPrWVvhJDpLgnSXAY+66wcxBt38Yas73q85yQ7xYF961YYkftgmmAG2R+QB5cZ2Bho+bGle1KTuTIHaf4hjbQ2d8oji9BSqvkMH9TTP+7uufGOrPMak/eB/8Z6WXvg/JsgNR8mSYciGm3zWt8b0v+ahcH2xgI=</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<assemblyIdentity name="nxtuitracker.application" version="1.0.0.0" publicKeyToken="8f568c8fa996ee03" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<description asmv2:publisher="Microsoft" asmv2:product="nxtuitracker" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<deployment install="true" mapFileExtensions="true" />
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" codebase="Application Files\nxtuitracker_1_0_0_0\nxtuitracker.exe.manifest" size="7648">
|
||||||
|
<assemblyIdentity name="nxtuitracker.exe" version="1.0.0.0" publicKeyToken="8f568c8fa996ee03" language="neutral" processorArchitecture="x86" type="win32" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<dsig:DigestValue>1sm65skmUm2hqDjEOZM/oBgnkPY=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<publisherIdentity name="CN=LSCHQ\yebreo" issuerKeyHash="68950aa4df7b13e6c9f019d03d6fdc741f426b76" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /><DigestValue>VZC6Dvh7biw2U04H742h5bgFiGY=</DigestValue></Reference></SignedInfo><SignatureValue>ohEEcoYjQ0QXtLMkXULBgq0mDucE3nnppBqYThhKar2YuVWoEETB0LRwiXL4eF4clTykBgXoTgfxKyLOq4zvj/xBBm1tfxg4HB9X1+ZVAzPIN4pQQQ8qU1IdltcCbIlyIYOly/EhJx6BLO0R2UCVhw275Z/GjX5/QAI9ou92Nbo=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>oi/RVzKF5ERlZdXcHNl7nxFXZy0HzpmzIvFzl/+4TZq8+LPTF5SEnRBgZjA1/Ir2qqpAx2vwhon07/PoLw0NDpMgVXndzEzhgqjoeVCjWvncix+O6ee3TD5z7wIVUhhFTJCOxjOzZZg4gOwUeq25RNqLiH30D8GuMNPVyLLemHs=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="668805b8e5a18def074e53362c6e7bf80eba9055" Description="" Url=""><as:assemblyIdentity name="nxtuitracker.application" version="1.0.0.0" publicKeyToken="8f568c8fa996ee03" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=LSCHQ\yebreo</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /><DigestValue>jaw+e9U08YdLZRCI06aCIaoM2xs=</DigestValue></Reference></SignedInfo><SignatureValue>XUuAxCQTZ2/WzKkqGXMO8VGHkb1Zc21t9QrDyeyvwiwOmr42Pbjp979TDXxkBOctT0o0PVLn245tpXAqp897zzYZwI/ClbciLIjZfZwmIFN0i6iN6ylDa3sqGHcFrpylLxUeWOXU9XzO6eSRbTiTdn5d9zJhgSd6fEAn/dcrAIQ=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>oi/RVzKF5ERlZdXcHNl7nxFXZy0HzpmzIvFzl/+4TZq8+LPTF5SEnRBgZjA1/Ir2qqpAx2vwhon07/PoLw0NDpMgVXndzEzhgqjoeVCjWvncix+O6ee3TD5z7wIVUhhFTJCOxjOzZZg4gOwUeq25RNqLiH30D8GuMNPVyLLemHs=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIByTCCATKgAwIBAgIQUseYgX4O061Bufu2e3DVhzANBgkqhkiG9w0BAQUFADAjMSEwHwYDVQQDHhgATABTAEMASABRAFwAeQBlAGIAcgBlAG8wHhcNMTQwMjI4MDUyNzE3WhcNMTUwMjI4MTEyNzE3WjAjMSEwHwYDVQQDHhgATABTAEMASABRAFwAeQBlAGIAcgBlAG8wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKIv0VcyheREZWXV3BzZe58RV2ctB86ZsyLxc5f/uE2avPiz0xeUhJ0QYGYwNfyK9qqqQMdr8IaJ9O/z6C8NDQ6TIFV53cxM4YKo6HlQo1r53Isfjunnt0w+c+8CFVIYRUyQjsYzs2WYOIDsFHqtuUTai4h99A/BrjDT1ciy3ph7AgMBAAEwDQYJKoZIhvcNAQEFBQADgYEAQyoxs7x9QfXJGDpPrWVvhJDpLgnSXAY+66wcxBt38Yas73q85yQ7xYF961YYkftgmmAG2R+QB5cZ2Bho+bGle1KTuTIHaf4hjbQ2d8oji9BSqvkMH9TTP+7uufGOrPMak/eB/8Z6WXvg/JsgNR8mSYciGm3zWt8b0v+ahcH2xgI=</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
|
||||||
Binary file not shown.
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
Generated
+45
@@ -0,0 +1,45 @@
|
|||||||
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||||
|
Partial Class frm_system_svc
|
||||||
|
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.components = New System.ComponentModel.Container()
|
||||||
|
Me.tmr_listener = New System.Windows.Forms.Timer(Me.components)
|
||||||
|
Me.SuspendLayout()
|
||||||
|
'
|
||||||
|
'tmr_listener
|
||||||
|
'
|
||||||
|
Me.tmr_listener.Enabled = True
|
||||||
|
'
|
||||||
|
'frm_system_svc
|
||||||
|
'
|
||||||
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
|
Me.ClientSize = New System.Drawing.Size(33, 26)
|
||||||
|
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
|
||||||
|
Me.Name = "frm_system_svc"
|
||||||
|
Me.ResumeLayout(False)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Friend WithEvents tmr_listener As System.Windows.Forms.Timer
|
||||||
|
|
||||||
|
End Class
|
||||||
@@ -0,0 +1,123 @@
|
|||||||
|
<?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>
|
||||||
|
<metadata name="tmr_listener.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
|
</root>
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
Imports Microsoft.Win32
|
||||||
|
|
||||||
|
Public Class frm_system_svc
|
||||||
|
Dim tracker_exepath As String
|
||||||
|
Private Sub frm_system_svc_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||||
|
Me.ShowInTaskbar = False
|
||||||
|
Me.Visible = False
|
||||||
|
|
||||||
|
tracker_exepath = Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Lattice\Nextest Utilization Tracker", "Path", "")
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Private Sub tmr_listener_Tick(sender As Object, e As EventArgs) Handles tmr_listener.Tick
|
||||||
|
If IsRunning("nxtuitrack") = False Then
|
||||||
|
If FileIO.FileSystem.FileExists(tracker_exepath & "\nxtuitrack.exe") = True Then
|
||||||
|
Shell(tracker_exepath & "\nxtuitrack.exe", AppWinStyle.NormalFocus, False)
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Public Function IsRunning(ProcessName As String) As Boolean
|
||||||
|
|
||||||
|
Dim p() As Process
|
||||||
|
p = Process.GetProcessesByName(ProcessName)
|
||||||
|
If p.Count > 0 Then
|
||||||
|
IsRunning = True
|
||||||
|
Else
|
||||||
|
IsRunning = False
|
||||||
|
End If
|
||||||
|
|
||||||
|
|
||||||
|
End Function
|
||||||
|
End Class
|
||||||
+38
@@ -0,0 +1,38 @@
|
|||||||
|
'------------------------------------------------------------------------------
|
||||||
|
' <auto-generated>
|
||||||
|
' This code was generated by a tool.
|
||||||
|
' Runtime Version:4.0.30319.18408
|
||||||
|
'
|
||||||
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
' the code is regenerated.
|
||||||
|
' </auto-generated>
|
||||||
|
'------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Option Strict On
|
||||||
|
Option Explicit On
|
||||||
|
|
||||||
|
|
||||||
|
Namespace My
|
||||||
|
|
||||||
|
'NOTE: This file is auto-generated; do not modify it directly. To make changes,
|
||||||
|
' or if you encounter build errors in this file, go to the Project Designer
|
||||||
|
' (go to Project Properties or double-click the My Project node in
|
||||||
|
' Solution Explorer), and make changes on the Application tab.
|
||||||
|
'
|
||||||
|
Partial Friend Class MyApplication
|
||||||
|
|
||||||
|
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
||||||
|
Public Sub New()
|
||||||
|
MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows)
|
||||||
|
Me.IsSingleInstance = true
|
||||||
|
Me.EnableVisualStyles = true
|
||||||
|
Me.SaveMySettingsOnExit = true
|
||||||
|
Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
||||||
|
Protected Overrides Sub OnCreateMainForm()
|
||||||
|
Me.MainForm = Global.systemservice.frm_system_svc
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
|
End Namespace
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<MySubMain>true</MySubMain>
|
||||||
|
<MainForm>frm_system_svc</MainForm>
|
||||||
|
<SingleInstance>true</SingleInstance>
|
||||||
|
<ShutdownMode>0</ShutdownMode>
|
||||||
|
<EnableVisualStyles>true</EnableVisualStyles>
|
||||||
|
<AuthenticationMode>0</AuthenticationMode>
|
||||||
|
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
|
||||||
|
</MyApplicationData>
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
Imports System
|
||||||
|
Imports System.Reflection
|
||||||
|
Imports System.Runtime.InteropServices
|
||||||
|
|
||||||
|
' General Information about an assembly is controlled through the following
|
||||||
|
' set of attributes. Change these attribute values to modify the information
|
||||||
|
' associated with an assembly.
|
||||||
|
|
||||||
|
' Review the values of the assembly attributes
|
||||||
|
|
||||||
|
<Assembly: AssemblyTitle("systemservice")>
|
||||||
|
<Assembly: AssemblyDescription("")>
|
||||||
|
<Assembly: AssemblyCompany("Microsoft")>
|
||||||
|
<Assembly: AssemblyProduct("systemservice")>
|
||||||
|
<Assembly: AssemblyCopyright("Copyright © Microsoft 2014")>
|
||||||
|
<Assembly: AssemblyTrademark("")>
|
||||||
|
|
||||||
|
<Assembly: ComVisible(False)>
|
||||||
|
|
||||||
|
'The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
|
<Assembly: Guid("2111d97c-2da4-4078-9eda-f4ae414b60ae")>
|
||||||
|
|
||||||
|
' Version information for an assembly consists of the following four values:
|
||||||
|
'
|
||||||
|
' Major Version
|
||||||
|
' Minor Version
|
||||||
|
' Build Number
|
||||||
|
' Revision
|
||||||
|
'
|
||||||
|
' You can specify all the values or you can default the Build and Revision Numbers
|
||||||
|
' by using the '*' as shown below:
|
||||||
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
|
<Assembly: AssemblyVersion("1.0.0.0")>
|
||||||
|
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||||
+63
@@ -0,0 +1,63 @@
|
|||||||
|
'------------------------------------------------------------------------------
|
||||||
|
' <auto-generated>
|
||||||
|
' This code was generated by a tool.
|
||||||
|
' Runtime Version:4.0.30319.18408
|
||||||
|
'
|
||||||
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
' the code is regenerated.
|
||||||
|
' </auto-generated>
|
||||||
|
'------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Option Strict On
|
||||||
|
Option Explicit On
|
||||||
|
|
||||||
|
Imports System
|
||||||
|
|
||||||
|
Namespace My.Resources
|
||||||
|
|
||||||
|
'This class was auto-generated by the StronglyTypedResourceBuilder
|
||||||
|
'class via a tool like ResGen or Visual Studio.
|
||||||
|
'To add or remove a member, edit your .ResX file then rerun ResGen
|
||||||
|
'with the /str option, or rebuild your VS project.
|
||||||
|
'''<summary>
|
||||||
|
''' A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
|
'''</summary>
|
||||||
|
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _
|
||||||
|
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
|
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||||
|
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
|
||||||
|
Friend Module Resources
|
||||||
|
|
||||||
|
Private resourceMan As Global.System.Resources.ResourceManager
|
||||||
|
|
||||||
|
Private resourceCulture As Global.System.Globalization.CultureInfo
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Returns the cached ResourceManager instance used by this class.
|
||||||
|
'''</summary>
|
||||||
|
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
|
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
||||||
|
Get
|
||||||
|
If Object.ReferenceEquals(resourceMan, Nothing) Then
|
||||||
|
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("systemservice.Resources", GetType(Resources).Assembly)
|
||||||
|
resourceMan = temp
|
||||||
|
End If
|
||||||
|
Return resourceMan
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Overrides the current thread's CurrentUICulture property for all
|
||||||
|
''' resource lookups using this strongly typed resource class.
|
||||||
|
'''</summary>
|
||||||
|
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
|
Friend Property Culture() As Global.System.Globalization.CultureInfo
|
||||||
|
Get
|
||||||
|
Return resourceCulture
|
||||||
|
End Get
|
||||||
|
Set
|
||||||
|
resourceCulture = value
|
||||||
|
End Set
|
||||||
|
End Property
|
||||||
|
End Module
|
||||||
|
End Namespace
|
||||||
@@ -0,0 +1,117 @@
|
|||||||
|
<?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.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: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" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
</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" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
</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=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
||||||
+73
@@ -0,0 +1,73 @@
|
|||||||
|
'------------------------------------------------------------------------------
|
||||||
|
' <auto-generated>
|
||||||
|
' This code was generated by a tool.
|
||||||
|
' Runtime Version:4.0.30319.18408
|
||||||
|
'
|
||||||
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
' the code is regenerated.
|
||||||
|
' </auto-generated>
|
||||||
|
'------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Option Strict On
|
||||||
|
Option Explicit On
|
||||||
|
|
||||||
|
|
||||||
|
Namespace My
|
||||||
|
|
||||||
|
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||||
|
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0"), _
|
||||||
|
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
|
Partial Friend NotInheritable Class MySettings
|
||||||
|
Inherits Global.System.Configuration.ApplicationSettingsBase
|
||||||
|
|
||||||
|
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings)
|
||||||
|
|
||||||
|
#Region "My.Settings Auto-Save Functionality"
|
||||||
|
#If _MyType = "WindowsForms" Then
|
||||||
|
Private Shared addedHandler As Boolean
|
||||||
|
|
||||||
|
Private Shared addedHandlerLockObject As New Object
|
||||||
|
|
||||||
|
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
|
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs)
|
||||||
|
If My.Application.SaveMySettingsOnExit Then
|
||||||
|
My.Settings.Save()
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
#End If
|
||||||
|
#End Region
|
||||||
|
|
||||||
|
Public Shared ReadOnly Property [Default]() As MySettings
|
||||||
|
Get
|
||||||
|
|
||||||
|
#If _MyType = "WindowsForms" Then
|
||||||
|
If Not addedHandler Then
|
||||||
|
SyncLock addedHandlerLockObject
|
||||||
|
If Not addedHandler Then
|
||||||
|
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
|
||||||
|
addedHandler = True
|
||||||
|
End If
|
||||||
|
End SyncLock
|
||||||
|
End If
|
||||||
|
#End If
|
||||||
|
Return defaultInstance
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
End Class
|
||||||
|
End Namespace
|
||||||
|
|
||||||
|
Namespace My
|
||||||
|
|
||||||
|
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
|
||||||
|
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
|
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
|
||||||
|
Friend Module MySettingsProperty
|
||||||
|
|
||||||
|
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
|
||||||
|
Friend ReadOnly Property Settings() As Global.systemservice.My.MySettings
|
||||||
|
Get
|
||||||
|
Return Global.systemservice.My.MySettings.Default
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
End Module
|
||||||
|
End Namespace
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" UseMySettingsClassName="true">
|
||||||
|
<Profiles>
|
||||||
|
<Profile Name="(Default)" />
|
||||||
|
</Profiles>
|
||||||
|
<Settings />
|
||||||
|
</SettingsFile>
|
||||||
Binary file not shown.
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
Binary file not shown.
@@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<doc>
|
||||||
|
<assembly>
|
||||||
|
<name>
|
||||||
|
systemservice
|
||||||
|
</name>
|
||||||
|
</assembly>
|
||||||
|
<members>
|
||||||
|
<member name="P:systemservice.My.Resources.Resources.ResourceManager">
|
||||||
|
<summary>
|
||||||
|
Returns the cached ResourceManager instance used by this class.
|
||||||
|
</summary>
|
||||||
|
</member><member name="P:systemservice.My.Resources.Resources.Culture">
|
||||||
|
<summary>
|
||||||
|
Overrides the current thread's CurrentUICulture property for all
|
||||||
|
resource lookups using this strongly typed resource class.
|
||||||
|
</summary>
|
||||||
|
</member><member name="T:systemservice.My.Resources.Resources">
|
||||||
|
<summary>
|
||||||
|
A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
</members>
|
||||||
|
</doc>
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user