please help me on how to change a user name and password in a VB project.

Recommended Answers

All 2 Replies

please specify exactly what u want to do in your project.

you just only have to use the .Edit method

example:

  Dim rs As Recordset

  set rs.open "customer table"
  rs.Edit
  rs!Customername=txtCustomername.Text
  [I].... and so on[/I]
  rs.Update
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.