Annoscia85
Registered User.
- Local time
- Today, 20:06
- Joined
- Aug 16, 2011
- Messages
- 32
Hi,
I've been working on this for a few hours..
I have a form with a few textboxes on it, they all have source control, these work fine and all the data entered by the user is inserted into the correct tables.
Also on this form i have a textbox called Revision, I need this unbound as I need this to be inputted into two tables, Costing_Main table and Costing_Sub table, this is my code....
CurrentDb.Execute "Insert into Costing_Main (Revision) Values ('" & Me.Revision & "')"
CurrentDb.Execute "Insert into Costing_Sub (Revision) Values ('" & Me.Revision & "')"
I receive no error message, no run-time error's...nothing
can anybody help??
I've been working on this for a few hours..
I have a form with a few textboxes on it, they all have source control, these work fine and all the data entered by the user is inserted into the correct tables.
Also on this form i have a textbox called Revision, I need this unbound as I need this to be inputted into two tables, Costing_Main table and Costing_Sub table, this is my code....
CurrentDb.Execute "Insert into Costing_Main (Revision) Values ('" & Me.Revision & "')"
CurrentDb.Execute "Insert into Costing_Sub (Revision) Values ('" & Me.Revision & "')"
I receive no error message, no run-time error's...nothing
can anybody help??