Hi,I am getting a strange error. I am using MS Access 2007. I get an error saying that it cannot find the Project or library and it highlights the Left function. Othertime it says that it cannot find this function. Does anyone know why I am getting this and what I can do about it.
My code:
Thank youCode:Public Function FindStar(ByRef ThisString As String) As String If Left(ThisString, 1) Like "[*]" Then FindStar = ThisString Else FindStar = "" End If