?? form15.frm
字號:
VERSION 5.00
Begin VB.Form Form15
BorderStyle = 1 'Fixed Single
Caption = "Form15"
ClientHeight = 4950
ClientLeft = 45
ClientTop = 435
ClientWidth = 6585
LinkTopic = "Form15"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4950
ScaleWidth = 6585
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "確認"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 420
Left = 2520
TabIndex = 2
Top = 3360
Width = 1575
End
Begin VB.TextBox Text2
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 420
Left = 3000
TabIndex = 1
Text = "Text2"
Top = 2520
Width = 1615
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 420
Left = 3000
TabIndex = 0
Text = "Text1"
Top = 1920
Width = 1615
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "匯總操作畫面"
BeginProperty Font
Name = "宋體"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 2400
TabIndex = 5
Top = 1080
Width = 1890
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "月份:"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 2160
TabIndex = 4
Top = 2640
Width = 720
End
Begin VB.Label Label3
AutoSize = -1 'True
Caption = "年份:"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 2160
TabIndex = 3
Top = 2040
Width = 720
End
End
Attribute VB_Name = "Form15"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
g_year = Text1.Text
g_month = Text2.Text
Form15.Hide
Form10.Show
End Sub
Private Sub Form_Load()
Text1.Text = Year(Date)
Text2.Text = Month(Date)
End Sub
Private Sub Form_Unload(Cancel As Integer)
Form1.Show
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -