editing a record

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am writing a program where i want to perform a calculation, and save this result to a field in a database. How do I open the row for editing, change the value, and close the row. I am new to .NEt. I would do this in VB6 using a recordset.edit, recordset.update. Please help.
 
Check out Expression Column
http://www.knowdotnet.com/articles/dataviews1.html. As soon as you change
the value, the expression will update itself.

--
W.G. Ryan MVP Windows - Embedded

http://forums.devbuzz.com
http://www.knowdotnet.com/dataaccess.html
http://www.msmvps.com/williamryan/
Tom Nowak said:
I am writing a program where i want to perform a calculation, and save
this result to a field in a database. How do I open the row for editing,
change the value, and close the row. I am new to .NEt. I would do this in
VB6 using a recordset.edit, recordset.update. Please help.
 
Hi Tom,

The recordset is not dotNet, therefore you can it exactly in the same way as
VB6 and have as well not the advantages of ADONET of course.

When you want to see it with a dataset (ADONET way) you can by instance look
at the link Bill provided you.

I hope this helps?

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top