Hi guys!
I want to know what's the proper way of dereferencing variables, as I'm a programming novice.
I have...
Please help. Thanks a lot.Code:Private Function Something(ByVal SomethingElse AS String) AS Integer Dim db AS DAO.Database Dim rs AS DAO.Recordset Set db = CurrentDB Set rs = db.OpenRecordset("SELECT TOP 1...") Something = rs.Fields("...").Value ???I dont know what to do next... End Function
Joe