How can i get rid off the double quote in a text
I have the problem when coding the VBScript. It seems I can not call any function like Trim( "String") if the String value have a double quote(s). Could you help me to get around with it or replace the double quote with 2 single quote' ' before i can pass the string.
Below is the code i got error "Compilation error 1025"
stMyVariable = " My text or number " value here "
Msgbox "The string after converting is: " &Trim(stMyVariable)
Any help will be greatly appreciated. Thanks many in advance
Have a great day
Myer
|