G
Guest
This seems pretty basic but I can't find an example of how to do it.
I have 2 saved queries: sqlBuyerIn & sqlBuyerOut
The record source for my form is sqlBuyerIn.
I want to press a button named "grpInOrOut" and change the recordsource to
sqlBuyerOut...
I think I could do that by using the Me!Recordsource command, but I want to
use an existing saved query, instead of creating the sqlstring.
Thanks for any input.
MikeZz
Private Sub grpInOrOut_Click()
Me!RecordSource = 'NEED HELP HERE!!!!
End Sub
I have 2 saved queries: sqlBuyerIn & sqlBuyerOut
The record source for my form is sqlBuyerIn.
I want to press a button named "grpInOrOut" and change the recordsource to
sqlBuyerOut...
I think I could do that by using the Me!Recordsource command, but I want to
use an existing saved query, instead of creating the sqlstring.
Thanks for any input.
MikeZz
Private Sub grpInOrOut_Click()
Me!RecordSource = 'NEED HELP HERE!!!!
End Sub