jhomer Posted February 5, 2008 Posted February 5, 2008 I would like to create Customer folders on the users C drive based on what record the user is viewing. Thus a send event of: "cmd.exe /c MD C:Customers" & CustomerName I receive an error message at then end of the Customers line stating I need a closing quotation mark. The calc engine will accept this string if the last isnt there. Could someone help guide me with the correct string?
comment Posted February 5, 2008 Posted February 5, 2008 The backslash is reserved as an escape character. In your formula, the combination " escapes the closing quotation mark and turns it into a literal character. Try: "cmd.exe /c MD C:Customers" & CustomerName Here the first backslash escapes the second one, so you get a literal backslash character, followed by an unescaped quotation mark. See also: Help > Creating a database > Working with formulas and functions > Identifying text constants and special characters in formulas
jhomer Posted February 5, 2008 Author Posted February 5, 2008 ARG! THANK YOU. I need to write this down....thats the second time I've got stumped on that! Thanks again for you help...
Lee Smith Posted February 5, 2008 Posted February 5, 2008 You can make any post a favorite. However, when it is your own, you can find them by going to the Menu >> ACTIVITY >> My Topics. HTH Lee
Recommended Posts
This topic is 6196 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now