📄 bklook.frm
字号:
VERSION 5.00
Begin VB.Form bklook
BorderStyle = 3 'Fixed Dialog
Caption = "历史库查询[选择备份文件]"
ClientHeight = 3645
ClientLeft = 45
ClientTop = 330
ClientWidth = 7845
Icon = "bklook.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3645
ScaleWidth = 7845
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.PictureBox Picture1
BackColor = &H00FFE09E&
Height = 3135
Left = 0
Picture = "bklook.frx":1272
ScaleHeight = 3075
ScaleWidth = 2475
TabIndex = 5
TabStop = 0 'False
Top = 0
Width = 2535
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "历史库查询"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 375
Index = 1
Left = 150
TabIndex = 7
Top = 870
Width = 2535
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = " 请您选择您要您要察看的备份的历史库"
BeginProperty Font
Name = "宋体"
Size = 11.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 1095
Left = 120
TabIndex = 6
Top = 1440
Width = 1695
End
Begin VB.Shape Shape2
BorderColor = &H0000FF00&
BorderWidth = 2
Height = 15
Left = 120
Top = 1245
Width = 2055
End
Begin VB.Shape Shape1
BorderColor = &H000000FF&
BorderWidth = 2
Height = 15
Left = 120
Top = 1200
Width = 2175
End
Begin VB.Image Image1
Height = 600
Left = 240
Picture = "bklook.frx":3B2D6
Stretch = -1 'True
Top = 120
Width = 600
End
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "历史库查询"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 375
Index = 0
Left = 120
TabIndex = 8
Top = 840
Width = 2655
End
End
Begin VB.DriveListBox Drive1
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 2640
TabIndex = 4
Top = 0
Width = 2535
End
Begin VB.DirListBox Dir1
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 2790
Left = 2640
TabIndex = 3
Top = 360
Width = 2535
End
Begin VB.FileListBox File1
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 3015
Left = 5280
Pattern = "*.fds"
TabIndex = 2
Top = 120
Width = 2535
End
Begin VB.CommandButton Command2
Caption = "选 择(&Y)"
Default = -1 'True
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 3960
TabIndex = 1
Top = 3240
Width = 1815
End
Begin VB.CommandButton Command4
Cancel = -1 'True
Caption = "取 消(&C)"
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 6000
TabIndex = 0
Top = 3240
Width = 1815
End
End
Attribute VB_Name = "bklook"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public yesno As Boolean
Public ff As String
Private Sub Command2_Click()
If Dir1.ListIndex = 0 Then
Exit Sub
End If
If Len(File1.FileName) = 0 Then Exit Sub
If Right(Dir1.Path, 1) = "\" Then ff = Dir1.Path & File1.FileName Else ff = Dir1.Path & "\" & File1.FileName
yesno = True
Unload Me
End Sub
Private Sub Command4_Click()
Unload Me
End Sub
Private Sub Dir1_Change()
File1.Path = Dir1.Path
End Sub
Private Sub Drive1_Change()
Dir1.Path = Drive1.Drive
End Sub
Private Sub Form_Load()
yesno = False
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -