Changed the workflow to remove the copy to clipboard button and hid the URL text box.

Copied indicator has been added.
Added Update button to the About form.
Fix the spinny boy on the About page
Removed the sound the played
This commit is contained in:
2025-09-18 21:42:27 +10:00
parent 0c6ded6b61
commit 1c4b41d474
13 changed files with 76 additions and 43 deletions

View File

@@ -22,6 +22,7 @@ Partial Class Form1
'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.btnClickThis = New System.Windows.Forms.Button()
Me.lblHelloWorld = New System.Windows.Forms.Label()
@@ -34,12 +35,14 @@ Partial Class Form1
Me.btnDHLShipping = New System.Windows.Forms.Button()
Me.MenuStrip1 = New System.Windows.Forms.MenuStrip()
Me.AboutToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.lblCoppiedNotifyer = New System.Windows.Forms.Label()
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
Me.MenuStrip1.SuspendLayout()
Me.SuspendLayout()
'
'btnClickThis
'
Me.btnClickThis.Location = New System.Drawing.Point(12, 148)
Me.btnClickThis.Location = New System.Drawing.Point(11, 203)
Me.btnClickThis.Name = "btnClickThis"
Me.btnClickThis.Size = New System.Drawing.Size(138, 23)
Me.btnClickThis.TabIndex = 0
@@ -49,7 +52,7 @@ Partial Class Form1
'lblHelloWorld
'
Me.lblHelloWorld.AutoSize = True
Me.lblHelloWorld.Location = New System.Drawing.Point(9, 101)
Me.lblHelloWorld.Location = New System.Drawing.Point(8, 161)
Me.lblHelloWorld.Name = "lblHelloWorld"
Me.lblHelloWorld.Size = New System.Drawing.Size(99, 13)
Me.lblHelloWorld.TabIndex = 1
@@ -57,7 +60,7 @@ Partial Class Form1
'
'txtFinalUrl
'
Me.txtFinalUrl.Location = New System.Drawing.Point(12, 121)
Me.txtFinalUrl.Location = New System.Drawing.Point(12, 177)
Me.txtFinalUrl.Name = "txtFinalUrl"
Me.txtFinalUrl.ReadOnly = True
Me.txtFinalUrl.Size = New System.Drawing.Size(652, 20)
@@ -120,7 +123,7 @@ Partial Class Form1
Me.MenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.AboutToolStripMenuItem})
Me.MenuStrip1.Location = New System.Drawing.Point(0, 0)
Me.MenuStrip1.Name = "MenuStrip1"
Me.MenuStrip1.Size = New System.Drawing.Size(687, 24)
Me.MenuStrip1.Size = New System.Drawing.Size(587, 24)
Me.MenuStrip1.TabIndex = 13
Me.MenuStrip1.Text = "MenuStrip1"
'
@@ -130,11 +133,24 @@ Partial Class Form1
Me.AboutToolStripMenuItem.Size = New System.Drawing.Size(52, 20)
Me.AboutToolStripMenuItem.Text = "About"
'
'lblCoppiedNotifyer
'
Me.lblCoppiedNotifyer.AutoSize = True
Me.lblCoppiedNotifyer.Location = New System.Drawing.Point(13, 100)
Me.lblCoppiedNotifyer.Name = "lblCoppiedNotifyer"
Me.lblCoppiedNotifyer.Size = New System.Drawing.Size(92, 13)
Me.lblCoppiedNotifyer.TabIndex = 14
Me.lblCoppiedNotifyer.Text = "lblCoppiedNotifyer"
'
'Timer1
'
'
'Form1
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(687, 181)
Me.ClientSize = New System.Drawing.Size(587, 122)
Me.Controls.Add(Me.lblCoppiedNotifyer)
Me.Controls.Add(Me.btnDHLShipping)
Me.Controls.Add(Me.btnFedexShipping)
Me.Controls.Add(Me.Button1)
@@ -168,4 +184,6 @@ Partial Class Form1
Friend WithEvents btnDHLShipping As Button
Friend WithEvents MenuStrip1 As MenuStrip
Friend WithEvents AboutToolStripMenuItem As ToolStripMenuItem
Friend WithEvents lblCoppiedNotifyer As Label
Friend WithEvents Timer1 As Timer
End Class