📄 dlgenergypara.frm
字号:
VERSION 5.00
Begin VB.Form DlgEnergyPara
Caption = "多年平均电能参数录入"
ClientHeight = 2085
ClientLeft = 60
ClientTop = 450
ClientWidth = 4695
LinkTopic = "Form1"
LockControls = -1 'True
ScaleHeight = 2085
ScaleWidth = 4695
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text1
Appearance = 0 'Flat
BackColor = &H00E0E0E0&
Height = 375
Index = 4
Left = 2040
TabIndex = 11
ToolTipText = "7月底、8月初防破坏线上水位坐标值对应的库容。"
Top = 1560
Width = 1335
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BackColor = &H00E0E0E0&
Height = 375
Index = 2
Left = 2040
TabIndex = 5
Top = 840
Width = 1335
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BackColor = &H00E0E0E0&
Height = 375
Index = 3
Left = 2040
TabIndex = 4
ToolTipText = "参考《任务指示书》第11页计算得出。"
Top = 1200
Width = 1335
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BackColor = &H00E0E0E0&
Height = 375
Index = 0
Left = 2040
TabIndex = 3
Top = 120
Width = 1335
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BackColor = &H00E0E0E0&
Height = 375
Index = 1
Left = 2040
TabIndex = 2
Top = 480
Width = 1335
End
Begin VB.CommandButton cmdCancel
Caption = "取 消"
Height = 375
Left = 3480
TabIndex = 1
Top = 600
Width = 1095
End
Begin VB.CommandButton cmdOK
Caption = "确 认"
Height = 375
Left = 3480
TabIndex = 0
Top = 240
Width = 1095
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "限制库容[(m3/s)月]"
Height = 255
Index = 4
Left = 120
TabIndex = 10
Top = 1620
Width = 1815
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "装机容量 (万KW)"
Height = 255
Index = 3
Left = 120
TabIndex = 9
Top = 1260
Width = 1935
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "保证出力 (KW)"
Height = 255
Index = 2
Left = 120
TabIndex = 8
Top = 900
Width = 1935
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "死 库 容[(m3/s)月]"
Height = 255
Index = 1
Left = 120
TabIndex = 7
Top = 540
Width = 1935
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "兴利库容[(m3/s)月]"
Height = 255
Index = 0
Left = 120
TabIndex = 6
Top = 180
Width = 1935
End
End
Attribute VB_Name = "DlgEnergyPara"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdCancel_Click()
Unload Me
End Sub
Private Sub cmdOK_Click()
Me.Tag = "OK"
Me.Hide
End Sub
Private Sub Text1_KeyDown(Index As Integer, KeyCode As Integer, Shift As Integer)
Select Case KeyCode
Case vbKeyReturn, vbKeyDown
If Index < Text1.UBound Then
Text1(Index + 1).SetFocus
Else
cmdOK.SetFocus
End If
End Select
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -