View Single Post
  #1  
Old November 26th, 2006, 04:08 PM posted to microsoft.public.access.forms
accessdesigner
external usenet poster
 
Posts: 89
Default Home Version Access

I purchased a home version of Access from Microsoft through my job, and when
I tried the following statement using the home version of Access, it wont
recognize [NameThings.NameLOOK] as being correct, but it works at work: (why?)

Dim strwhere As String
strwhere = ""
If Not IsNull(Me.NameList) Then
If Me.NameList = [NameThings.NameLOOK] Then
strwhere = strwhere & Me.NameList
End If
End If