?? ftimer.frm
字號:
VERSION 5.00
Begin VB.Form fTimer
Caption = "服務器刷新周期"
ClientHeight = 2805
ClientLeft = 60
ClientTop = 345
ClientWidth = 4155
LinkTopic = "Form1"
ScaleHeight = 2805
ScaleWidth = 4155
StartUpPosition = 1 'CenterOwner
Begin VB.CommandButton Command2
Cancel = -1 'True
Caption = "取消"
Height = 375
Left = 2160
TabIndex = 3
Top = 2160
Width = 1095
End
Begin VB.CommandButton Command1
Caption = "確定"
Default = -1 'True
Height = 375
Left = 960
TabIndex = 2
Top = 2160
Width = 1095
End
Begin VB.TextBox Text1
Height = 375
Left = 720
TabIndex = 0
Top = 1080
Width = 2655
End
Begin VB.Frame Frame1
Caption = "刷新周期(ms)"
Height = 1695
Left = 240
TabIndex = 1
Top = 360
Width = 3615
End
End
Attribute VB_Name = "fTimer"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Interval = Text1.Text
fMain.Timer1.Interval = Interval
Unload Me
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
Text1.Text = Interval
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -