?? edit.frm
字號:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form Edit
BorderStyle = 1 'Fixed Single
Caption = "Database Manager"
ClientHeight = 990
ClientLeft = 4545
ClientTop = 2880
ClientWidth = 5010
Icon = "Edit.frx":0000
LinkTopic = "Form2"
MaxButton = 0 'False
MDIChild = -1 'True
Picture = "Edit.frx":0442
ScaleHeight = 990
ScaleWidth = 5010
Begin VB.Timer Timer1
Interval = 5
Left = 960
Top = 120
End
Begin MSComctlLib.ProgressBar ProgressBar1
Height = 375
Left = 360
TabIndex = 0
Top = 360
Width = 4215
_ExtentX = 7435
_ExtentY = 661
_Version = 393216
Appearance = 1
Min = 90
End
End
Attribute VB_Name = "Edit"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim i As Integer
Private Sub Form_Load()
i = 1
End Sub
Private Sub Timer1_Timer()
If i = 99 Then
Exit Sub
End If
If i = 98 Then
EditMain.Show
Unload Me
Exit Sub
End If
i = i + 1
ProgressBar1 = i
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -