PDA

Click to See Complete Forum and Search --> : Easy question but...


wick77
Jul 5th, 2000, 12:32 PM
I have an easy question but im unable to find an answer so... I am using DAO data controls to link to my database. I was wondering how i can change data in one of the fields without using a data bound text box. I want to be able to take a value from one text box and put that value into a field in my database.

Any help would be greatly appreciated, thanks,
Wick

pcmaloney
Jul 5th, 2000, 12:48 PM
Try:

rs.Fields(x).value = txtField(x).text

if you are connected to the dataSource.