设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 857|回复: 2
打印 上一主题 下一主题

[窗体] 窗体运行时出现424错误

[复制链接]
跳转到指定楼层
1#
发表于 2009-4-15 21:24:17 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 snowing 于 2009-4-15 21:25 编辑

Private Sub Form_Load()
订单号.Value = dd_no
产品号.Value = product_no
客户号.Value = kehu_no
产品数量.Value = product_number

End Sub


----------------------------------------------------------------
Private Sub cmdOK_Click()
'******************************
'修改库存'添加发货记录
'******************************
Dim curdb As Database
Dim curRS As Recordset
Dim strSql As String
Set curRS = curdb.OpenRecordset("select * from 库存表 where 产品号 ='" & 产品号.Value & "'")
If Not curRS.EOF Then
  
  Set curRS = curdb.OpenRecordset("select 库存表 from 库存 where 产品号 = '" & 产品号.Value & "'")
  If curRS.Fields("库存量") - product_number >= 0 Then
  curdb.Execute "update 库存表 set 库存量 =" & curRS.Fields("库存量") - product_number & " where 产品号 ='" & product_no & "'"
  curdb.Execute "update 订货表 set 订单是否发货 ='-1' where 订单号 ='" & dd_no & "'"
  strSql = "insert into 发货表 (订单号,发货时间,产品号,客户号,产品数量,发货价格,发货负责人) values ('" & _
                        订单号.Value & "','" & 发货时间.Value & "','" & 产品号.Value & "','" & _
                        客户号.Value & "', " & CInt(产品数量.Value) & "," & CInt(发货价格.Value) & ",'" & _
                        发货负责人.Value & "')"
                        
                        curdb.Execute (strSql)
                        MsgBox ("已经发货成功")
                        DoCmd.Close
                        Else
                        MsgBox ("库存不足,不能发货!")
                        End If
                        Else: MsgBox ("库存中没有该产品,不能发货!")
                        End If
End Sub
运行时红体字出现问题!
请好心的高手帮忙一下,毕业设计卡在这里!!!!!谢谢
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
2#
发表于 2009-4-15 21:41:48 | 只看该作者
可能这里有错

Private Sub Form_Load()
订单号.Value = dd_no
产品号.Value = product_no
客户号.Value = kehu_no
产品数量.Value = product_number

End Sub

发上你的数据库看看才能知晓情况
3#
发表于 2009-4-15 21:58:45 | 只看该作者
你那个dd_no 是什么啊 好像是得不出它的值 所以无法赋给 订单号.Value 
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-11-14 13:36 , Processed in 0.090269 second(s), 26 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表