Skip to content

Commit

Permalink
Added version number in the screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Meiji01 committed Mar 9, 2024
1 parent 0de430a commit 8d4f436
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions Form1.frm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Begin VB.Form Form1
MultiLine = -1 'True
TabIndex = 6
Text = "Form1.frx":030A
Top = 1200
Top = 1320
Width = 5535
End
Begin VB.CommandButton cmdlist
Expand Down Expand Up @@ -72,6 +72,14 @@ Begin VB.Form Form1
Top = 240
Width = 1455
End
Begin VB.Label lblVersion
Caption = "v x.x"
Height = 255
Left = 5160
TabIndex = 7
Top = 1800
Width = 615
End
Begin VB.Label Label3
Caption = "New Attribute"
Height = 255
Expand Down Expand Up @@ -224,6 +232,9 @@ Private Sub Form_Click()
End Sub

Private Sub Form_Load()

lblVersion.Caption = "v. " & App.Major & "." & App.Minor & "." & App.Revision

cmbattr.Text = "Default"
cmdunhide.Enabled = False

Expand All @@ -237,10 +248,12 @@ Private Sub Form_Unload(Cancel As Integer)
End
End Sub



Private Sub tmanim_Timer()

Form1.Visible = True
tmanim.Interval = 40
tmanim.Interval = 100

mdlpublic.ysize = mdlpublic.ysize + 300
Form1.Height = mdlpublic.ysize
Expand All @@ -249,7 +262,7 @@ mdlpublic.ypos = mdlpublic.ypos + 200
Form1.Top = mdlpublic.ypos


If Form1.Height >= 2385 Or Form1.Top >= 3000 Then
If Form1.Height >= 2565 Or Form1.Top >= 3000 Then
tmanim.Enabled = False
End If

Expand Down

0 comments on commit 8d4f436

Please sign in to comment.