frm_data_recover_three.frm
来自「一个公司的客户财产管理系统vb源码」· FRM 代码 · 共 173 行
FRM
173 行
VERSION 5.00
Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomct2.ocx"
Begin VB.Form frm_Data_Recover_three
BorderStyle = 1 'Fixed Single
Caption = "数据恢复向导"
ClientHeight = 6360
ClientLeft = 4965
ClientTop = 4230
ClientWidth = 9420
ControlBox = 0 'False
Icon = "frm_Data_Recover_three.frx":0000
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 6360
ScaleWidth = 9420
Begin MSComCtl2.Animation Animation1
Height = 615
Left = 840
TabIndex = 0
Top = 1560
Width = 1095
_ExtentX = 1931
_ExtentY = 1085
_Version = 393216
FullWidth = 73
FullHeight = 41
End
Begin VB.Timer tim_Backup_Star
Interval = 2000
Left = 120
Top = 720
End
Begin VB.Frame Frame1
BackColor = &H00FFFFFF&
BorderStyle = 0 'None
Caption = "Frame1"
Height = 855
Left = 0
TabIndex = 6
Top = 0
Width = 9495
Begin VB.Label Label1
AutoSize = -1 'True
BackColor = &H00FFFFFF&
Caption = "数据恢复"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 480
TabIndex = 8
Top = 120
Width = 1020
End
Begin VB.Label Label2
AutoSize = -1 'True
BackColor = &H00FFFFFF&
Caption = "正在进行数据恢复操作,跟据你的数据库大小时间有所不同,请稍等..."
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 210
Left = 1080
TabIndex = 7
Top = 480
Width = 6405
End
Begin VB.Image Image1
Height = 480
Left = 8760
Picture = "frm_Data_Recover_three.frx":0CCA
Stretch = -1 'True
Top = 120
Width = 480
End
End
Begin VB.CommandButton cmd_Back
Caption = "< 上一步(&Back)"
Height = 375
Left = 3720
TabIndex = 5
Top = 5880
Width = 1455
End
Begin VB.CommandButton cmd_Next
Caption = "下一步(&Next)>"
Height = 375
Left = 5280
TabIndex = 4
Top = 5880
Width = 1455
End
Begin VB.CommandButton cmd_Cancel
Caption = "取消 (&Cancel)"
Height = 375
Left = 7320
TabIndex = 3
Top = 5880
Width = 1455
End
Begin VB.PictureBox Picture1
Height = 4215
Left = 563
ScaleHeight = 4155
ScaleWidth = 8235
TabIndex = 1
Top = 1200
Width = 8295
Begin VB.Label Label3
AutoSize = -1 'True
Caption = "正在进行数据恢复,请耐心等待......."
ForeColor = &H000000FF&
Height = 180
Left = 600
TabIndex = 2
Top = 1560
Width = 3060
End
End
Begin VB.Line Line2
BorderColor = &H00808080&
X1 = 0
X2 = 9480
Y1 = 5760
Y2 = 5760
End
End
Attribute VB_Name = "frm_Data_Recover_three"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
On Error GoTo err
Me.cmd_Back.Enabled = False
Me.cmd_Cancel.Enabled = False
Me.cmd_Next.Enabled = False
Me.Animation1.Open App.Path & "\media\FILEMOVE.avi"
Me.Animation1.Play
Exit Sub
err:
MsgBox err.Description, vbCritical
End Sub
Private Sub tim_Backup_Star_Timer()
On Error GoTo err
Call fRestoreDatabase_a(str_FileName_Reocver, "Customer_Riches", , , True)
Unload Me
Load frm_Data_Recover_fourth
frm_Data_Recover_fourth.Show vbModal
Exit Sub
err:
Me.cmd_Back.Enabled = True
Me.cmd_Cancel.Enabled = True
Me.cmd_Next.Enabled = False
MsgBox err.Description, vbCritical
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?