Frankenoid
Registered User.
- Local time
- Today, 21:07
- Joined
- May 30, 2002
- Messages
- 10
Arggghh! I'll never figure these things out!
I need to let our file clerk designate a "blank" designation for a client matter if necessary. I'm cool if its a brand new client; however, on an existing client, I need to determine if such a generic "blank" designation (a zero-length string) exists, before offering the option of creating one. I don't think I need to go into any more detail here.
The current version of the string generates a "syntax error in string"; other versions of the placement of single and double quotation marks have given either the same error, or a too few parameters error. This is what I have at this point:
strSQL = "Select * FROM tblCaseClient WHERE fldClient = " & Me.cboClient & " And fldCase = '" & """" & ""
The error message as displayed indicates that I do have a double-quote being read, but still says there is a syntax error.
HELP!!
I need to let our file clerk designate a "blank" designation for a client matter if necessary. I'm cool if its a brand new client; however, on an existing client, I need to determine if such a generic "blank" designation (a zero-length string) exists, before offering the option of creating one. I don't think I need to go into any more detail here.
The current version of the string generates a "syntax error in string"; other versions of the placement of single and double quotation marks have given either the same error, or a too few parameters error. This is what I have at this point:
strSQL = "Select * FROM tblCaseClient WHERE fldClient = " & Me.cboClient & " And fldCase = '" & """" & ""
The error message as displayed indicates that I do have a double-quote being read, but still says there is a syntax error.
HELP!!