?? frmaircon.frm
字號:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form FrmAirCon
Caption = "空調控制"
ClientHeight = 3090
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
LinkTopic = "Form1"
LockControls = -1 'True
ScaleHeight = 3090
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Visible = 0 'False
Begin VB.CommandButton CmdCancel
Caption = "取消"
Height = 495
Left = 2640
TabIndex = 3
Top = 1920
Width = 1215
End
Begin VB.CommandButton CmdSubmit
Caption = "確定"
Height = 495
Left = 720
TabIndex = 1
Top = 1920
Width = 1215
End
Begin MSComctlLib.Slider Slider
Height = 675
Left = 960
TabIndex = 0
Top = 840
Width = 2775
_ExtentX = 4895
_ExtentY = 1191
_Version = 393216
Max = 3
TickStyle = 2
TextPosition = 1
End
Begin VB.Label Label1
Caption = "關 弱 中 強"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1080
TabIndex = 2
Top = 480
Width = 2655
End
End
Attribute VB_Name = "FrmAirCon"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Public AirCon As Byte
Private Sub CmdCancel_Click()
g_Cancel = True
Unload Me
End Sub
Private Sub CmdSubmit_Click()
AirCon = Slider.Value
g_Cancel = False
Unload Me
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -