Ajays Posted March 22, 2009 Posted March 22, 2009 Hi, How i can send double quotes " in send command This command is not working Send(" " ") Please let me know. Regards, Ajay realtebo 1
exodius Posted March 22, 2009 Posted March 22, 2009 Two ways:Put three double quotes in row:MsgBox (0, "", """This is a double quoted sentence.""")Put single quotes outside your single double quotes:MsgBox (0, "", '"This is also a double quoted sentence."')
Spiff59 Posted March 22, 2009 Posted March 22, 2009 I'm surprised there's not a {QUOTE} keyword. Just to cover all the bases, Send(Chr(34)) works as well.
Recommended Posts
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