?? frm_rstj.frm
字號:
VERSION 5.00
Begin VB.Form frm_RSTJ
BorderStyle = 3 'Fixed Dialog
Caption = "人數統計"
ClientHeight = 795
ClientLeft = 45
ClientTop = 330
ClientWidth = 4200
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 795
ScaleWidth = 4200
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame1
Height = 735
Left = 40
TabIndex = 1
Top = 0
Width = 4095
Begin VB.Label Label1
BackColor = &H00FFC0FF&
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 240
TabIndex = 2
Top = 240
Width = 3615
End
End
Begin VB.TextBox Text1
Height = 375
Left = 240
TabIndex = 0
Text = "0"
Top = 1440
Width = 975
End
End
Attribute VB_Name = "frm_RSTJ"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Me.Left = (Screen.Width - Me.Width) / 2
Me.Top = (Screen.Height - Me.Height) / 2
End Sub
Private Sub Text1_Change()
Label1.Caption = "當前常住人口總數為: " + Text1.Text + " 人"
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -