(2) 用户和密码正确后,将进入系统的主界面。在这个界面里将实现本系统所有的功能,用户一看便会使用,如图8所示。
图8 主界面
(3) 进入主界面以后,点击菜单中的添加收支记录,会出现两个选项,一个是资金收入,一个是资金支出。当点击资金收入时,会出现如图9所示。
图9 添加收支信息界面
Private Sub Command1_Click()
If Combo1.Text = "" Then
MsgBox "请选类型!", , "提示"
Combo1.SetFocus
Exit Sub
End If
If Text1.Text = "" Then
MsgBox "请填写日期!", , "提示"
Text1.SetFocus
Exit Sub
End If
If Not IsDate(Text1.Text) Then
MsgBox "收入日期为日期格式(yyyy-mm-dd)!", , "提示"
here 类型 = '" & Combo1.Text & "' "
Adodc1.Refresh
If Adodc1.Recordset.EOF Then
MsgBox "没有查询结果!", , "提示"
Else
Set DataGrid1.DataSource = Adodc1
DataGrid1.Caption = "查找结果"
End If
End If
Else
If Option2.Value = True Then
Text2.Text = ""
If Text1.Text = "" Then
MsgBox "请输入查询编号!", , "提示"
Text1.SetFocus
Else
Adodc1.RecordSource = " select * from 收入信息表 where 编号 = '" & Text1.Text & "' "
Adodc1.Refresh
If Adodc1.Recordset.EOF Then
MsgBox "没有查询结果!", , "提示"
Else
Set DataGrid1.DataSource = Adodc1
DataGrid1.Caption = "查找结果"
End If
End If
Else
If Option3.Value = True Then
Text1.Text = ""
If Text2.Text = "" Then
MsgBox "请输入查询金额!", , "提示"