📄 copy.frm
字号:
VERSION 5.00
Begin VB.Form frmCopy
BorderStyle = 3 'Fixed Dialog
Caption = "#"
ClientHeight = 4545
ClientLeft = 870
ClientTop = 1530
ClientWidth = 7980
ClipControls = 0 'False
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "copy.frx":0000
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4545
ScaleWidth = 7980
Begin VB.Frame Frame1
Height = 975
Left = 0
TabIndex = 5
Top = 3600
Width = 8055
Begin VB.CommandButton cmdExit
Cancel = -1 'True
Caption = "Cancel"
Default = -1 'True
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 420
Left = 6000
MaskColor = &H00000000&
TabIndex = 6
Top = 360
Width = 1665
End
End
Begin VB.PictureBox Picture1
Appearance = 0 'Flat
BackColor = &H80000005&
ForeColor = &H80000008&
Height = 975
Left = 0
Picture = "copy.frx":0442
ScaleHeight = 945
ScaleWidth = 8145
TabIndex = 3
Top = 0
Width = 8175
Begin VB.Label lblapp
AutoSize = -1 'True
BackStyle = 0 'Transparent
BeginProperty Font
Name = "Times New Roman"
Size = 15.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C00000&
Height = 360
Left = 960
TabIndex = 4
Top = 240
Width = 75
End
End
Begin VB.PictureBox picStatus
AutoRedraw = -1 'True
ClipControls = 0 'False
FillColor = &H00FF0000&
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 384
Left = 525
ScaleHeight = 330
ScaleWidth = 7215
TabIndex = 2
TabStop = 0 'False
Top = 2025
Width = 7275
End
Begin VB.Label lblDestFile
Caption = "*"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 195
Left = 525
TabIndex = 0
Top = 1620
Width = 5640
End
Begin VB.Label lblCopy
AutoSize = -1 'True
Caption = "Destination File"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 195
Left = 525
TabIndex = 1
Top = 1320
Width = 1080
End
End
Attribute VB_Name = "frmCopy"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Option Compare Text
' frmCopy
Private Sub cmdExit_Click()
ExitSetup Me, gintRET_EXIT
End Sub
Private Sub Form_Load()
lblapp.Caption = gstrAppName + " Installation wizard"
SetFormFont Me
cmdExit.Caption = ResolveResString(resBTNCANCEL)
lblCopy.Caption = ResolveResString(resLBLDESTFILE)
lblDestFile.Caption = vbNullString
frmCopy.Caption = gstrTitle
End Sub
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
If UnloadMode <> 1 Then
ExitSetup Me, gintRET_EXIT
Cancel = 1
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -