I don't recall ever having trouble using a similar procedure in the past but for some reason this one is giving me tons of trouble. Everytime it gets executed, it fires "Object doesn't support this property or method" error and I just can't understand why.
Here is the snippet
SelectedEntry = Val (LogGrid.TextMatrix(LogGrid.Row,1))
datLoggedEntry.DatabaseName = App.Path & "\ndbdata.mdb"
datLoggedEntry.RecordSource = "Select * FROM NDBLog WHERE Beacon_ID=" & SelectedEntry
datLoggedEntry.Refresh
Even if I was to replace SelectedEntry variable with a number, I still get this error...
Any idea why?????