Hi,
I'm trying to use a table view of a subform to change the record in another subform in form view.
I thought I could use docmd.GoToRecord, but i'm going round in circles trying to get the syntax right.
doesn't work
Nor does
Nor does
So what am i doing wrong?
I simply want to be able to move to a record in a table view subform and the form view subform display keep in step and vice versa, so you have two different views of the same data and selecting a record in either one updates the current record in the other.
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Google Rank Extractor -> Perl beta with FusionCharts
I'm trying to use a table view of a subform to change the record in another subform in form view.
I thought I could use docmd.GoToRecord, but i'm going round in circles trying to get the syntax right.
Code:
ID = Me.CurrentRecord
Forms!contacts.[Fin_Pro subform].Form.GoToRecord , , acGoTo, ID
Nor does
Code:
ID = Me.CurrentRecord
Forms!contacts.[Fin_Pro subform].Form.Date_Received.SetFocus
DoCmd.GoToRecord , , acGoTo, ID
Nor does
Code:
ID = Me.CurrentRecord
DoCmd.GoToRecord acDataForm, "Fin_Pro subform", acGoTo, ID
So what am i doing wrong?
I simply want to be able to move to a record in a table view subform and the form view subform display keep in step and vice versa, so you have two different views of the same data and selecting a record in either one updates the current record in the other.
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Google Rank Extractor -> Perl beta with FusionCharts