?? dialog.frm
字號(hào):
VERSION 5.00
Begin VB.Form Dialog
BorderStyle = 3 'Fixed Dialog
Caption = "對(duì)話框標(biāo)題"
ClientHeight = 3795
ClientLeft = 2760
ClientTop = 3750
ClientWidth = 6345
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "Dialog.frx":0000
ScaleHeight = 3795
ScaleWidth = 6345
ShowInTaskbar = 0 'False
Begin VB.CommandButton CancelButton
Caption = "取消"
Height = 375
Left = 4800
TabIndex = 1
Top = 840
Width = 1215
End
Begin VB.CommandButton OKButton
Caption = "確定"
Height = 375
Left = 4800
TabIndex = 0
Top = 1440
Width = 1215
End
End
Attribute VB_Name = "Dialog"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub CancelButton_Click()
Dialog.Hide
End Sub
Private Sub OKButton_Click()
Dialog.Hide
End Sub
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -