K
kiki
I need some basic answer for Access97
I need to update some specific field in one table after for example Form
On_Close Event. I don't know how to write a code which will add some value
to specific field in specified table.
Also if field does not exist in selected table to authomaticaly create it.
I have tried the following but Type Missmatch error occurs:
Dim dbs As Database
Dim tdf As TableDef
Dim fld As Field
Set dbs = CurrentDb()
Set tdf = dbs.TableDefs("Microwave")
Set fld = tdf.Fields("Far_RAUType")
fld = DLookup ("some expression....")
Thanks
Christian
I need to update some specific field in one table after for example Form
On_Close Event. I don't know how to write a code which will add some value
to specific field in specified table.
Also if field does not exist in selected table to authomaticaly create it.
I have tried the following but Type Missmatch error occurs:
Dim dbs As Database
Dim tdf As TableDef
Dim fld As Field
Set dbs = CurrentDb()
Set tdf = dbs.TableDefs("Microwave")
Set fld = tdf.Fields("Far_RAUType")
fld = DLookup ("some expression....")
Thanks
Christian