JenNorthwood
Registered User.
- Local time
- Today, 11:10
- Joined
- Apr 17, 2003
- Messages
- 24
Hi There,
I am having trouble figuring out how to requery my form to get rid of an error I am getting.
Run-Time error 3070: The Microsoft Jet Datbase engine does not recognize TrainingID as a valid field name or experession.
I press ok and it still works.
This error occurs when I pick an option from my combo4 box.
Set rs = Me.RecordsetClone
rs.FindFirst "[TraningID] = " & Str(Nz(Me![Combo4], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
Thanks for your help.
I have the parent form frmtraining, and a subform sfrmEmployeeTraining.
It usually happens after I add a new record.
Do I new a requery command somewhere
Thanks,
Jen
I am having trouble figuring out how to requery my form to get rid of an error I am getting.
Run-Time error 3070: The Microsoft Jet Datbase engine does not recognize TrainingID as a valid field name or experession.
I press ok and it still works.
This error occurs when I pick an option from my combo4 box.
Set rs = Me.RecordsetClone
rs.FindFirst "[TraningID] = " & Str(Nz(Me![Combo4], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
Thanks for your help.
I have the parent form frmtraining, and a subform sfrmEmployeeTraining.
It usually happens after I add a new record.
Do I new a requery command somewhere
Thanks,
Jen