📄 form44.frm
字号:
VERSION 5.00
Begin VB.Form Form44
Caption = "Form44"
ClientHeight = 3540
ClientLeft = 60
ClientTop = 345
ClientWidth = 4890
LinkTopic = "Form44"
ScaleHeight = 3540
ScaleWidth = 4890
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 440
Left = 1800
TabIndex = 0
Top = 720
Width = 1775
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 = 440
Left = 1800
TabIndex = 1
Top = 1320
Width = 1775
End
Begin VB.TextBox Text4
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 440
Left = 1800
TabIndex = 2
Top = 1920
Width = 1775
End
Begin VB.CommandButton Command2
Caption = "按帐单号查"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 840
TabIndex = 3
Top = 2640
Width = 1575
End
Begin VB.CommandButton Command3
Caption = "按月份查"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 2520
TabIndex = 5
Top = 2640
Width = 1575
End
Begin VB.Label Label1
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 = 960
TabIndex = 8
Top = 840
Width = 960
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 = 960
TabIndex = 7
Top = 1440
Width = 960
End
Begin VB.Label Label4
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 = 960
TabIndex = 6
Top = 2040
Width = 960
End
Begin VB.Label Label5
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 = 1200
TabIndex = 4
Top = 120
Width = 2520
End
End
Attribute VB_Name = "Form44"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command2_Click()
If Text4.Text = "" Then
MsgBox ("帐单号不能为空!")
Text4.SetFocus
GoSub exit_command2_click
End If
g_year = Text1.Text
g_month = Text2.Text
g_reckoning = Text4.Text
g_query_method = 1
g_form = "form44"
Form44.Hide
Form43.Show
exit_command2_click:
End Sub
Private Sub Command3_Click()
g_year = Text1.Text
g_month = Text2.Text
g_query_method = 2
g_form = "form44"
Form44.Hide
Form43.Show
End Sub
Private Sub Form_Load()
Text1.Text = g_year
Text2.Text = g_month
End Sub
Private Sub Form_Unload(Cancel As Integer)
Form5.Show
End Sub
Private Sub Text1_GotFocus()
Text4.SetFocus
End Sub
Private Sub Text2_GotFocus()
Text4.SetFocus
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -