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

@@ -24,25 +24,35 @@ Partial Class Form3
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Form3))
Me.Label1 = New System.Windows.Forms.Label()
Me.btnUpdates = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Cursor = System.Windows.Forms.Cursors.WaitCursor
Me.Label1.Cursor = System.Windows.Forms.Cursors.Arrow
Me.Label1.Location = New System.Drawing.Point(12, 9)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(222, 39)
Me.Label1.TabIndex = 1
Me.Label1.Text = "Verson 1.0.5.3 " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Made by Ben Nicholson - All Rights Reserved" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
Me.Label1.Text = "Verson 1.0.6.0 " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Made by Ben Nicholson - All Rights Reserved" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
Me.Label1.UseWaitCursor = True
'
'btnUpdates
'
Me.btnUpdates.Location = New System.Drawing.Point(87, 66)
Me.btnUpdates.Name = "btnUpdates"
Me.btnUpdates.Size = New System.Drawing.Size(75, 23)
Me.btnUpdates.TabIndex = 2
Me.btnUpdates.Text = "Updates"
Me.btnUpdates.UseVisualStyleBackColor = True
'
'Form3
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(246, 60)
Me.ClientSize = New System.Drawing.Size(246, 101)
Me.Controls.Add(Me.btnUpdates)
Me.Controls.Add(Me.Label1)
Me.ForeColor = System.Drawing.Color.Black
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
@@ -58,4 +68,5 @@ Partial Class Form3
End Sub
Friend WithEvents Label1 As Label
Friend WithEvents btnUpdates As Button
End Class