VB6 + Adodc + DataGrid +access 数据修改问题?

我在VB里采用Adodc+DataGrid连接数据库的形式。现在需要通过text修改DataGrid选定行的数据!请问应该如何操作,最好有源代码!谢谢不是在DataGri... 我在VB里 采用Adodc + DataGrid 连接数据库的形式。现在需要通过text 修改DataGrid 选定行的数据!请问应该如何操作,最好有源代码!谢谢
不是在 DataGrid 里直接修改哦,是在text里填入修改内容,修改到DataGrid 选定的行!
展开
 我来答
揭莞然H7
2009-12-21 · TA获得超过5683个赞
知道小有建树答主
回答量:893
采纳率:0%
帮助的人:657万
展开全部
给你实例:
Text1=txtname
Text2=txtage
数据库=database.mdb
资料表=contact
字段=Name,Age

'数据库连接
Dim mode As String '宣告mode为字符串资料形态
Private Sub Form_Load()
Adodc1.CursorLocation = adUseClient
Adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Data Source=" & App.Path & "\database.mdb"
Adodc1.CommandType = adCmdText
Adodc1.RecordSource = "select * from contact"
Adodc1.Refresh

Set DataGrid1.DataSource = Adodc1
Adodc1.Refresh
End Sub

Private Sub Form_Activate()
Call LoadControls
End Sub

’新增代码
Private Sub cmdadd_Click()
mode = "Add"
End Sub

’编辑代码
Private Sub cmdedit_Click()
mode = "Edit"
End Sub

'以下为储存代码
Private Sub cmdsave_Click()
If mode = "Add" Then
Adodc1.Recordset.AddNew
Adodc1.Recordset.Fields("Name") = txtname.Text
Adodc1.Recordset.Fields("Age") = txtage.Text
Adodc1.Recordset.Update
Adodc1.Recordset.Requery
Call LoadControls
MsgBox "Saving Successful.", vbInformation + vbOKOnly
End If

If mode = "Edit" Then
Adodc1.Recordset.Fields("Name") = txtname.Text
Adodc1.Recordset.Fields("Age") = txtage.Text
Adodc1.Recordset.Update
Adodc1.Recordset.Requery
Call LoadControls
MsgBox "Saving Successful.", vbInformation + vbOKOnly
End If
Set DataGrid1.DataSource = Adodc1
Adodc1.Refresh
End Sub

'在DataGrid触动移动时,textbox内容也跟着移动
Private Sub DataGrid1_Click()
Call LoadControls
End Sub

'用于将资料库数据显示在Textbox
Sub LoadControls()
On Error Resume Next
If Adodc1.Recordset.RecordCount > 0 Then
txtname.Text = Adodc1.Recordset.Fields("Name")
txtage.Text = Adodc1.Recordset.Fields("Age")
End If
End Sub
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2009-12-31
展开全部
Private Sub Command1_Click()
Adodc1.RecordSource = "select * from 超级用户表 where 用户名='" & Text1.Text & "'"
Adodc1.Refresh
If Adodc1.Recordset.EOF Then
MsgBox "没有这个用户,请重新输入正确的用户名", , "错误提示"
Else
If Text2.Text <> Adodc1.Recordset.Fields("密码") Then
MsgBox "你的密码错误,请输入正确的用户密码!", , "错误提示"
Else
If Text3.Text <> Text4.Text Then
MsgBox "请确认你的新密码的一致性"
Else
Adodc1.Recordset("用户名") = Text1.Text
Adodc1.Recordset("密码") = Text3.Text
Adodc1.Recordset.Update
MsgBox "密码已经修改成功"
Form3.Hide
Form2.Show
End If
End If
End If
End Sub 我运行是正确的哦!!!!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
何书泽
2009-12-31
知道答主
回答量:9
采纳率:100%
帮助的人:1.2万
展开全部
Private Sub Command1_Click()
Adodc1.RecordSource = "select * from 超级用户表 where 用户名='" & Text1.Text & "'"
Adodc1.Refresh
If Adodc1.Recordset.EOF Then
MsgBox "没有这个用户,请重新输入正确的用户名", , "错误提示"
Else
If Text2.Text <> Adodc1.Recordset.Fields("密码") Then
MsgBox "你的密码错误,请输入正确的用户密码!", , "错误提示"
Else
If Text3.Text <> Text4.Text Then
MsgBox "请确认你的新密码的一致性"
Else
Adodc1.Recordset("用户名") = Text1.Text
Adodc1.Recordset("密码") = Text3.Text
Adodc1.Recordset.Update
MsgBox "密码已经修改成功"
Form3.Hide
Form2.Show
End If
End If
End If
End Sub 我运行时是可以的哦!!!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友12434458b
2009-12-21 · TA获得超过399个赞
知道小有建树答主
回答量:760
采纳率:0%
帮助的人:515万
展开全部
Adodc1.Recordset.Fields("姓名") = Trim(Text1.Text)
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式