J
|
Jane 2/13/2007 |
Brenda, Function BeforeEdit(dict, where) if dict("equipment_maintance")="value1" then strSQLSave = "INSERT INTO AnotherTable (equipment_maintance) values (" strSQLSave = strSQLSave & dict("equipment_maintance") strSQLSave = strSQLSave & ")" dbConnection.Execute strSQLSave end if BeforeEdit = True End Function |
B
|
bburden author 2/13/2007 |
Brenda, use Before record updated or Before record added event for your purpose. Here is a sample code:
|