📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 3 'Fixed Dialog
Caption = "About MyApp"
ClientHeight = 5460
ClientLeft = 2340
ClientTop = 1935
ClientWidth = 9390
ClipControls = 0 'False
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3768.589
ScaleMode = 0 'User
ScaleWidth = 8817.694
ShowInTaskbar = 0 'False
StartUpPosition = 1 'CenterOwner
Begin VB.TextBox Text1
BackColor = &H80000000&
ForeColor = &H00000000&
Height = 5175
Left = 120
Locked = -1 'True
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 6
Text = "frmAbout.frx":0000
Top = 120
Width = 6030
End
Begin VB.PictureBox picIcon
AutoSize = -1 'True
ClipControls = 0 'False
Height = 540
Left = 6360
Picture = "frmAbout.frx":0A12
ScaleHeight = 337.12
ScaleMode = 0 'User
ScaleWidth = 337.12
TabIndex = 1
Top = 120
Width = 540
End
Begin VB.CommandButton cmdOK
Cancel = -1 'True
Caption = "OK"
Default = -1 'True
Height = 345
Left = 7920
TabIndex = 0
Top = 4920
Width = 1260
End
Begin VB.Line Line2
X1 = 5746.996
X2 = 5746.996
Y1 = -82.826
Y2 = 3313.045
End
Begin VB.Line Line1
BorderColor = &H00808080&
BorderStyle = 6 'Inside Solid
Index = 1
X1 = 5746.996
X2 = 9507.897
Y1 = 1822.175
Y2 = 1822.175
End
Begin VB.Label lblDescription
Caption = "Example program that demonstrates the RSA encryption algorithm. The modulus will handle a maximum key size of 64bits."
ForeColor = &H00000000&
Height = 1050
Left = 6360
TabIndex = 2
Top = 1560
Width = 2805
End
Begin VB.Label lblTitle
Caption = "RSA Encryption Algorithm"
ForeColor = &H00000000&
Height = 480
Left = 7320
TabIndex = 4
Top = 120
Width = 1845
End
Begin VB.Line Line1
BorderColor = &H00FFFFFF&
BorderWidth = 2
Index = 0
X1 = 5746.996
X2 = 9493.812
Y1 = 1822.175
Y2 = 1822.175
End
Begin VB.Label lblVersion
Caption = "Version: 1.00"
Height = 225
Left = 7560
TabIndex = 5
Top = 840
Width = 1845
End
Begin VB.Label lblDisclaimer
Caption = $"frmAbout.frx":0D1C
ForeColor = &H00000000&
Height = 1665
Left = 6360
TabIndex = 3
Top = 3000
Width = 2775
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Me.Caption = "About " & App.Title
lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
'lblTitle.Caption = App.Title
End Sub
Private Sub cmdOK_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -