📄 form2.frm
字号:
VERSION 5.00
Begin VB.Form Form2
BorderStyle = 3 'Fixed Dialog
Caption = "报表样式"
ClientHeight = 2145
ClientLeft = 45
ClientTop = 435
ClientWidth = 4065
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
Moveable = 0 'False
ScaleHeight = 2145
ScaleWidth = 4065
ShowInTaskbar = 0 'False
Begin VB.ComboBox Combo2
BeginProperty Font
Name = "宋体"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 345
Left = 1560
TabIndex = 5
Top = 960
Width = 2055
End
Begin VB.CommandButton Command2
Caption = "退出"
Height = 495
Left = 2280
TabIndex = 3
Top = 1560
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 495
Left = 720
TabIndex = 2
Top = 1560
Width = 1215
End
Begin VB.ComboBox Combo1
BeginProperty Font
Name = "宋体"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 345
Left = 1560
TabIndex = 1
Top = 360
Width = 2055
End
Begin VB.Label Label2
Caption = "报表类型"
BeginProperty Font
Name = "宋体"
Size = 11.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800080&
Height = 255
Left = 360
TabIndex = 4
Top = 360
Width = 1335
End
Begin VB.Label Label1
Caption = "报表样式"
BeginProperty Font
Name = "宋体"
Size = 11.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800080&
Height = 255
Left = 360
TabIndex = 0
Top = 960
Width = 1335
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Combo1.Text = "采购入库" And Combo2.Text = "按商品名称报表" Then
DataReport1.Show
End If
If Combo1.Text = "采购入库" And Combo2.Text = "按入库日期报表" Then
DataReport2.Show
End If
If Combo1.Text = "销售出库" And Combo2.Text = "按商品名称报表" Then
DataReport3.Show
End If
If Combo1.Text = "销售出库" And Combo2.Text = "按出库日期报表" Then
DataReport4.Show
End If
form1.Adodc2.Recordset.AddNew
form1.Adodc2.Recordset.Fields(0) = form1.username
form1.Adodc2.Recordset.Fields(1) = form1.userpower
form1.Adodc2.Recordset.Fields(2) = Date$
form1.Adodc2.Recordset.Fields(3) = Time$
form1.Adodc2.Recordset.Update
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
Combo1.AddItem "采购入库"
Combo1.AddItem "采购退货"
Combo1.AddItem "销售出库"
Combo1.AddItem "销售退货"
Combo2.AddItem "按商品名称报表"
Combo2.AddItem "按入库日期报表"
Combo2.AddItem "按出库日期报表"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -