JoshuaAnthony
Registered User.
- Local time
- Today, 21:15
- Joined
- Dec 18, 2003
- Messages
- 68
Hi,
The following works for me:
but when I try to select certain fields from the recordSource, it doesn't seem to work. This is one of my failed attempts:
Any suggestions to set me in the right direction?
Thanks,
Joshua
The following works for me:
Code:
strSQL = "SELECT * FROM [" & Me.RecordSource & "]"
but when I try to select certain fields from the recordSource, it doesn't seem to work. This is one of my failed attempts:
Code:
strSQL = "SELECT [" & Me.RecordSource.[ID Number] & "],[" & Me.RecordSource.[Field1] & "] FROM [" & Me.RecordSource & "]"
Any suggestions to set me in the right direction?
Thanks,
Joshua