Hi all,
A small problem that should be straight foward....
I have Form 'A' that lists all the People in the company. The user will highlight one of the names and press the button 'Summary'
This will open form 'B' that contains data using a query that combines all the Persons information.
I am using the [OpenArgs] parameter to open the second form, but I can not find a way of filtering the information so that just the selected persons data is viewed.
I tried passing the [OpenArgs] to a fieled in the Form and then using :
Me.RecordsetClone.FindFirst "[PersonName] = '" & OpenArgs & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
But this does not update any thing..
Any comments or suggestions welcome,
Thanks,
A small problem that should be straight foward....
I have Form 'A' that lists all the People in the company. The user will highlight one of the names and press the button 'Summary'
This will open form 'B' that contains data using a query that combines all the Persons information.
I am using the [OpenArgs] parameter to open the second form, but I can not find a way of filtering the information so that just the selected persons data is viewed.
I tried passing the [OpenArgs] to a fieled in the Form and then using :
Me.RecordsetClone.FindFirst "[PersonName] = '" & OpenArgs & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
But this does not update any thing..
Any comments or suggestions welcome,
Thanks,