计算机毕业设计功能模块介绍:
5.1 frmLogin(登陆界面)
此模块显示系统的登陆界面,包括帐号、密码,登陆和取消按钮。如图所示:
以下是引用片段:
其主要代码实现如下: Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button) Select Case Button.Index Case 1 '判断当前的用户和密码是不是正确 Dim tmprs As New ADODB.Recordset Set tmprs = GetSql("select * from 管理员 where 帐号='" & Trim(Me.Text3(0).Text) & "' and 密码='" & Trim(Me.Text3(1).Text) & "'") If tmprs.RecordCount <= 0 Then MsgBox "用户或密码错误,不能使用系统,请重新输入!" Exit Sub
|
5.2 frmMain(系统主界面)
系统主界面显示系统的各个子模块,方面用户进行各项功能操作。如图所示:
〖资料来源:计算机毕业论文 www.xiaoniu168.com〗
第8页为计算机毕业论文区域信息维护功能介绍......