|
-
Aug 2nd, 1999, 04:43 PM
#2
According to naming convention your variable strCustID is a string, then change you SQL statement to:
strSource = "Select * From Contacts Where[Customer ID] = '" & strCustID & "'"
If strCustID is a numeric type then change you SQL statement to:
strSource = "Select * From Contacts Where[Customer ID] = " & strCustID
Regards,
------------------
Serge
Software Developer
[email protected]
[email protected]
[This message has been edited by Serge (edited 08-03-1999).]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|