前端之家收集整理的这篇文章主要介绍了
用vb6.0编写的修改程序没有反应,求指点,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试着编写了一段
修改程序,如下; Private Sub Command4_Click() On Error GoTo errorhandler: If Text1.Text <> "" Then Adodc1.RecordSource = "select*from 库存 where 货物编号 =" & Text1.Text Adodc1.Refresh Adodc1.Recordset.Fields("货物编号") = Text1.Text Adodc1.Recordset.Fields("货物
名称") = Text2.Text Adodc1.Recordset.Fields("库存量") = Text3.Text Adodc1.Recordset.Fields("单位") = Text4.Text Else Msg
Box "货物编号是主索引字段,不能为空","
错误提示" End If Exit Sub errorhandler: Msg
Box "货物编号是主索引,不能重复","
错误提示" End Sub 但是运行后,对
内容修改后怎么没反应啊,还是原来的
内容,这个程序好像没反应似的,哪位大侠帮忙解释一下啊!不胜感激
原文链接:https://www.f2er.com/vb/258247.html