|
-
Jun 15th, 2001, 08:48 AM
#1
Thread Starter
PowerPoster
Double quotes inside Quotes
I get a compiler error using this code. How can I write this because I need to insert this code this way.
Thanks
Code:
NewSholder = Replace(sholder, ">i.", "color="#808080">i.")
-
Jun 15th, 2001, 08:54 AM
#2
Member
Double quotes inside Quotes
try this one
NewSholder = Replace(sholder, ">i.", "color='#808080'>i.")
or this one
NewSholder = Replace(sholder, ">i.", "color=""#808080"">i.")
happy VBing!!
firoz
-
Jun 15th, 2001, 08:55 AM
#3
Code:
NewSholder = Replace(sholder, ">i.", "color=" & chr(34) & "#808080" & chr(34) & ">i.")
-
Jun 15th, 2001, 09:00 AM
#4
Thread Starter
PowerPoster
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
|