R
Randy Fritz
Hello NG
I Have a linked DBase IV Table. Oops Sorry Access 97. I have a form in
which I add employees into our db and then add the employees into the dbase
table for other applications. The Adding works fine. My Problem is if I edit
information I cannot seem to edit the dbase table. What do I not know that
would affect editing a dbase table.
When I add I do the following
set rs = db.openrecordset("DBase Table",dbOpenDynaset)
with rs
.addnew
DBase Fields = Form Fields
.Update
end with
When I Edit I do the following
set rs = db.openrecordset("SQL Query For Specific Employee Record",
dbOpenDynaset)
with rs
.edit
DBase Field To Change = Form Field New Value
.update
end with
So what am I doing wrong?
TIAFAH
Randy
I Have a linked DBase IV Table. Oops Sorry Access 97. I have a form in
which I add employees into our db and then add the employees into the dbase
table for other applications. The Adding works fine. My Problem is if I edit
information I cannot seem to edit the dbase table. What do I not know that
would affect editing a dbase table.
When I add I do the following
set rs = db.openrecordset("DBase Table",dbOpenDynaset)
with rs
.addnew
DBase Fields = Form Fields
.Update
end with
When I Edit I do the following
set rs = db.openrecordset("SQL Query For Specific Employee Record",
dbOpenDynaset)
with rs
.edit
DBase Field To Change = Form Field New Value
.update
end with
So what am I doing wrong?
TIAFAH
Randy