Hi
I am trying to change the data source of a form via code. The form I which to change is called "template" and the query name I wish to change the data source to is the same as the value in a field in a visible form i.e. Forms![frm Recs tracked jobs]![Job]. (A query of that name was created by a previous routine).
I tried the following code but it gave an error "Compile error: Invalid use of Me keyword".
Sub Opentemplate_click()
Dim QueryName As String
DoCmd.OpenForm "template", acNormal, "", "", , acNormal
QueryName = Forms![frm Recs tracked jobs]![Job]
Me.RecordSource = "QueryName"
End Sub
Any advice would be greatly appreciated.
Thanks
AL
I am trying to change the data source of a form via code. The form I which to change is called "template" and the query name I wish to change the data source to is the same as the value in a field in a visible form i.e. Forms![frm Recs tracked jobs]![Job]. (A query of that name was created by a previous routine).
I tried the following code but it gave an error "Compile error: Invalid use of Me keyword".
Sub Opentemplate_click()
Dim QueryName As String
DoCmd.OpenForm "template", acNormal, "", "", , acNormal
QueryName = Forms![frm Recs tracked jobs]![Job]
Me.RecordSource = "QueryName"
End Sub
Any advice would be greatly appreciated.
Thanks
AL