收藏 分销(赏)

仓库标准管理系统VBAccess源代码.doc

上传人:二*** 文档编号:4542462 上传时间:2024-09-27 格式:DOC 页数:47 大小:716.04KB
下载 相关 举报
仓库标准管理系统VBAccess源代码.doc_第1页
第1页 / 共47页
亲,该文档总共47页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述

1、仓库管理系统 项目标建立 这是本人利用闲暇之余在VB6.0上制作一个简陋类库管系统,现图文结合方法一步一步展现制作过程。因为本人是个初学者,里面存在很多不足之处望得到高手们指导。此文可作供初学者们学习交流。作者联络方法:E-mail QQ:最终运行效果打开软件出现以下登录界面输入系统预设用户名及密码( 1 1 )单击“登录”或单击“新用户”添加新用户进入以下主界面:建立工程1、 创建标准EXE2、 按“打开” 3、 添加MDI窗体打开 4、 编辑菜单在空白处右击点击“菜单编辑器” 在“标题”里输入“系统”,在“名称”里输入“Sys”(注意此处不能为汉字)点击“下一个”再点击“ ”“确定”退到M

2、DI界面点击“系统”“退出”以下,然后编写代码。代码以下: Private Sub Exit_Click() EndEnd Sub数据库建立VB6.0中能够创建Access数据库。以下建立一个“用户表”数据库,用来存放用户信息及部分出入库管理信息。以下图单击“外接程序”再单击“可视化数据管理器”出现图点击“文件”“新建”“Microsoft Access”“Version 2.0 MDB”输入数据库名,“保留”出现以下图在数据窗口中右击“新建表”,最终以下往数据表里添加数据在这里就不罗嗦了,请查阅相关书籍。登录界面窗口建立 最终界面以下:1、Adodc1添加过程为:单击“工程”“部件”出现下图

3、所表示,选择“控件”下“Microsoft ADO Data Control 6.0 (OLEDB)” 单击“确定”在工具栏中会出现“”图标,单击它并拖动到对应位置即可。其它元件不在一一说明。2、 本窗体代码以下:Private Sub Command1_Click() “登录”、“确定”按钮 If Command1.Caption = 确定 And Command2.Caption = 取消 Then 假如为“确定”则添加新用户 If Text1.Text = Then 提醒用户输入用户名 MsgBox 请输入用户名!, , 登录信息提醒: Exit Sub Else Dim usename

4、 As String 检测用户名是否已经存在 Dim strS As String usename = Trim(Text1.Text) strS = select * from 用户登录信息表 where 用户名= & usename & Adodc1.CommandType = adCmdText Adodc1.RecordSource = strS Adodc1.Refresh If Adodc1.Recordset.EOF = False Then MsgBox 您输入用户已存在!, , 登录提醒信息: Text1.Text = Text2.Text = Text3.Text = Te

5、xt1.SetFocus Exit Sub End If End If If Text2.Text = Then 提醒用户密码不能为空 MsgBox 密码不能为空!, , 登录提醒信息: Text2.SetFocus Exit Sub End If If Text3.Text = Then MsgBox 请再次输入密码!, , 登录提醒信息: Text3.SetFocus Exit Sub End If If Text2.Text Text3.Text Then MsgBox 两次输入密码不一致,请确定!, , 登录提醒信息: Text2.Text = Text3.Text = Text2.S

6、etFocus Exit Sub Else Adodc1.Recordset.AddNew 添加新用户 Adodc1.Recordset.Fields(用户名) = Trim(Text1.Text) Adodc1.Recordset.Fields(密码) = Trim(Text2.Text) Adodc1.Recordset.Update MsgBox (添加新用户成功,现在您能够登陆系统了!) Label3.Visible = False Text3.Visible = False Command1.Caption = 登录 Command2.Caption = 退出 End If Else

7、 “登录”按钮,用户登录 Dim strSno As String Dim strSelect As String strSno = Trim(Text1.Text) 检测用户名是否存在 strSelect = select 密码 from 用户登录信息表 where 用户名 = & strSno & Adodc1.CommandType = adCmdText Adodc1.RecordSource = strSelect Adodc1.Refresh If Adodc1.Recordset.EOF = True Then MsgBox 用户名不存在,请重新输入!, , 登录提醒信息: Te

8、xt1.Text = Text2.Text = Text1.SetFocus Exit Sub End If If Adodc1.Recordset.Fields(密码) = Trim(Text2.Text) Then 检测密码是否正确 Form1.Hide Unload Me Form2.Show MsgBox 登陆成功!, , 登录提醒信息: Else MsgBox 密码不正确,请重新输入!, , 登录提醒信息: Text2.Text = Text2.SetFocus End If End IfEnd SubPrivate Sub Command2_Click() “退出”或“取消”按钮

9、If Command2.Caption = 取消 Then Label3.Visible = False Text3.Visible = False Command1.Caption = 登录 Command2.Caption = 退出 Text1.Text = Text2.Text = Text1.SetFocus Else End Unload Me End IfEnd SubPrivate Sub Command3_Click() “新用户”按钮 Label3.Visible = True Text3.Visible = True Text1.Text = Text2.Text = Te

10、xt3.Text = Command1.Caption = 确定 Command2.Caption = 取消 Text1.SetFocusEnd SubPrivate Sub Command3_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) Label6.Visible = TrueEnd SubPrivate Sub Command3_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single) Label6.Vis

11、ible = FalseEnd SubPrivate Sub Form_Load() Label3.Visible = False Text3.Visible = FalseEnd SubPrivate Sub Timer1_Timer() 时间time1控件time事件代码,用来 显示向左移动欢迎字幕 If Label4.Left + Label4.Width 0 Then 当标签右边位置大于0时,标签向左移 Label4.Move Label4.Left - 80 Else 不然标签从头开始 Label4.Left = Form1.ScaleWidth End If If Label5.L

12、eft + Label5.Width 0 Then Label5.Move Label5.Left - 80 Else Label5.Left = Form1.ScaleWidth End IfEnd Sub主界面窗体以下:代码: Private Sub AddNew_Click() Frame1.Visible = True Frame2.Visible = FalseEnd SubPrivate Sub CHKPMCHX_Click() Frame2.Caption = 出库信息 Dim pm As String Dim n As String pm = InputBox(产品名, 请输入

13、, 0) n = select * from 出库表 where 品名 = & pm & Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid1End SubPrivate Sub CHKXHCHX_Click() Frame2.Caption = 出库信息 Dim XH As String Dim n As String XH = InputBox(产品型号, 请输入, 0) n = select * from 出库表 where 型号 = & XH & Adodc2.Comma

14、ndType = adCmdText Adodc2.RecordSource = n Adodc2.RefreshEnd SubPrivate Sub CKCZ_Click() Form2.Hide Form6.ShowEnd SubPrivate Sub CKJSHR_Click() Frame2.Caption = 出库信息 Dim JSHR As String Dim n As String JSHR = InputBox(经手人, 请输入, 0) n = select * from 出库表 where 经手人 = & JSHR & Adodc2.CommandType = adCmdT

15、ext Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid1End SubPrivate Sub CKSHJ_Click() Frame2.Caption = 出库信息 Dim CHKRQ As String Dim n As String CHKRQ = InputBox(出库日期,格式为:月/日/年 如:12/1/, 请输入, 0) n = select * from 出库表 where 出库日期 = & CHKRQ & Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Ado

16、dc2.Refresh Call InitGrid1End SubPrivate Sub CKZCX_Click() Frame2.Caption = 出库信息 Dim ZB As String ZB = select * from 出库表 Adodc2.CommandType = adCmdText Adodc2.RecordSource = ZB Adodc2.Refresh Call InitGrid1End SubPrivate Sub Command1_Click() If Text1.Text = Then 提醒用户输入用户名 MsgBox 请输入用户名!, , 登录信息提醒: E

17、xit Sub Else Dim usename As String 检测用户名是否已经存在 Dim strS As String usename = Trim(Text1.Text) strS = select * from 用户登录信息表 where 用户名= & usename & Adodc1.CommandType = adCmdText Adodc1.RecordSource = strS Adodc1.Refresh If Adodc1.Recordset.EOF = False Then MsgBox 您输入用户已存在!, , 登录提醒信息: Text1.Text = Text

18、2.Text = Text3.Text = Text1.SetFocus Exit Sub End If End If If Text2.Text = Then 提醒用户密码不能为空 MsgBox 密码不能为空!, , 登录提醒信息: Text2.SetFocus Exit Sub End If If Text3.Text = Then MsgBox 请再次输入密码!, , 登录提醒信息: Text3.SetFocus Exit Sub End If If Text2.Text Text3.Text Then MsgBox 两次输入密码不一致,请确定!, , 登录提醒信息: Text2.Tex

19、t = Text3.Text = Text2.SetFocus Exit Sub Else Adodc1.Recordset.AddNew 添加新用户 Adodc1.Recordset.Fields(用户名) = Trim(Text1.Text) Adodc1.Recordset.Fields(密码) = Trim(Text2.Text) Adodc1.Recordset.Update Dim X As Integer X = MsgBox(成功添加新用户,是否要重新登录!, vbYesNo + vbQuestion + vbDefaultButton1, 提醒信息!) If X = vbYe

20、s Then Unload Me Form3.Show End If MsgBox (成功添加新用户!) Label3.Visible = False Text3.Visible = False Command1.Caption = 登录 Command2.Caption = 退出 End If Frame1.Visible = False Frame2.Visible = True Text1.Text = Text2.Text = Text3.Text = Form3.ShowEnd SubPrivate Sub Command2_Click() Frame1.Visible = Fals

21、e Frame2.Visible = TrueEnd SubPrivate Sub CXDL_Click() Form3.Show Unload MeEnd SubPrivate Sub Exit_Click() End Unload Form1 Unload Form2 Unload Form3 Unload Form4 Unload Form5 Unload Form6 Unload Form7 Unload Form8End SubPrivate Sub Form_Load() TextUserName = Trim(Form1.Text1.Text) Unload Form1 Fram

22、e1.Visible = False Call InitGrid0 Me.Height = MDIForm1.Height - 1060 Me.Width = MDIForm1.Width - 560 Me.Top = MDIForm1.Top Me.Left = MDIForm1.LeftEnd SubPrivate Sub GHCZ_Click() Form2.Hide Form8.ShowEnd SubPrivate Sub GHPMCX_Click() Frame2.Caption = 归还信息 Dim pm As String Dim n As String pm = InputBo

23、x(产品名, 请输入, 0) n = select * from 归还表 where 品名 = & pm & Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub GHRCX_Click() Frame2.Caption = 归还信息 Dim JCR As String Dim n As String JCR = InputBox(归还人, 请输入, 0) n = select * from 归还表 where 归还人 = & JCR & Ad

24、odc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub GHSJCX_Click() Frame2.Caption = 归还信息 Dim JCRQ As String Dim n As String JCRQ = InputBox(归还日期,格式为:月/日/年 如:12/1/, 请输入, 0) n = select * from 归还表 where 归还日期 = & JCRQ & Adodc2.CommandType = adCmdText Adod

25、c2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub GHXHCX_Click() Frame2.Caption = 归还信息 Dim XH As String Dim n As String XH = InputBox(产品型号, 请输入, 0) n = select * from 归还表 where 型号 = & XH & Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPri

26、vate Sub GHZCX_Click() Frame2.Caption = 归还信息 Dim ZB As String ZB = select * from 归还表 Adodc2.CommandType = adCmdText Adodc2.RecordSource = ZB Adodc2.Refresh Call InitGrid2End SubPrivate Sub JCCZ_Click() Form2.Hide Form7.ShowEnd SubPrivate Sub JCHPMCHX_Click() Frame2.Caption = 借出信息 Dim pm As String Di

27、m n As String pm = InputBox(产品名, 请输入, 0) n = select * from 借出表 where 品名 = & pm & Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub JCHXHCHX_Click() Frame2.Caption = 借出信息 Dim XH As String Dim n As String XH = InputBox(产品型号, 请输入, 0) n = select * fro

28、m 借出表 where 型号 = & XH & Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub JCRCX_Click() Frame2.Caption = 借出信息 Dim JCR As String Dim n As String JCR = InputBox(借出人, 请输入, 0) n = select * from 借出表 where 借出人 = & JCR & Adodc2.CommandType = adCmdText Ad

29、odc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub JCSHJCX_Click() Frame2.Caption = 借出信息 Dim JCRQ As String Dim n As String JCRQ = InputBox(借出日期,格式为:月/日/年 如:12/1/, 请输入, 0) n = select * from 借出表 where 借出日期 = & JCRQ & Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Ref

30、resh Call InitGrid2End SubPrivate Sub JCZCX_Click() Frame2.Caption = 借出信息 Dim ZB As String ZB = select * from 借出表 Adodc2.CommandType = adCmdText Adodc2.RecordSource = ZB Adodc2.Refresh Call InitGrid2End SubPrivate Sub JSHRCHX_Click() Frame2.Caption = 归还信息 Dim JSHR As String Dim n As String JSHR = In

31、putBox(经手人, 请输入, 0) n = select * from 归还表 where 经手人 = & JSHR & Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub JSHRCX_Click() Frame2.Caption = 借出信息 Dim JSHR As String Dim n As String JSHR = InputBox(经手人, 请输入, 0) n = select * from 借出表 where 经手人 =

32、 & JSHR & Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub PMCX_Click() Frame2.Caption = 库存信息 Dim pm As String Dim n As String pm = InputBox(产品名, 请输入, 0) n = select * from 库存表 where 品名 = & pm & Adodc2.CommandType = adCmdText Adodc2.RecordSource =

33、 n Adodc2.Refresh Call InitGrid0End SubPrivate Sub RKCZ_Click() Form2.Hide Form5.ShowEnd SubPrivate Sub RKJSHR_Click() Frame2.Caption = 入库信息 Dim JSHR As String Dim n As String JSHR = InputBox(经手人, 请输入, 0) n = select * from 入库表 where 经手人 = & JSHR & Adodc2.CommandType = adCmdText Adodc2.RecordSource =

34、 n Adodc2.Refresh Call InitGrid1End SubPrivate Sub RKPMCHX_Click() Frame2.Caption = 入库信息 Dim pm As String Dim n As String pm = InputBox(产品名, 请输入, 0) If Len(pm) 0 Then n = select * from 入库表 where 品名 = & pm & Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh End If Call InitGrid1En

35、d SubPrivate Sub RKSHJ_Click() Frame2.Caption = 入库信息 Dim RKRQ As String Dim n As String RKRQ = InputBox(入库日期,格式为:月/日/年 如:12/1/, 请输入, 0) n = select * from 入库表 where 入库日期 = & RKRQ & Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid1End SubPrivate Sub RKXHCHX_Click() F

36、rame2.Caption = 入库信息 Dim XH As String Dim n As String XH = InputBox(产品型号, 请输入, 0) If Len(XH) 0 Then n = select * from 入库表 where 型号 = & XH & Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh End If Call InitGrid1End SubPrivate Sub RKZCX_Click() Frame2.Caption = 入库信息 Dim ZB As String ZB = select * from 入库表 Adodc2.CommandType = adCmdText Adodc2.RecordSource = ZB Adodc2.Refresh Call InitGrid1End SubPrivate Sub Timer1_Timer() If Label4.Left + Label4.Width 0 Then 当标签右边位置大于0时,标签向

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 通信科技 > 数据库/数据算法

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2025 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服