![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
How can I include quotes around a word in a text string?
For example: sTempString = "PLEASE NOTE THAT THE CODE NEXT TO THE "REF:" NOTATION INDICATES" -- Maureen |
#2
|
|||
|
|||
![]()
Build the text string in sections:
sTempString = "PLEASE NOTE THAT THE CODE NEXT TO THE " & _ Chr(34) & "REF:" & Chr(34) & " NOTATION INDICATES" -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Maureen" wrote in message ... How can I include quotes around a word in a text string? For example: sTempString = "PLEASE NOTE THAT THE CODE NEXT TO THE "REF:" NOTATION INDICATES" -- Maureen |
#3
|
|||
|
|||
![]()
Thank you!
-- Maureen "Sue Mosher [MVP-Outlook]" wrote: Build the text string in sections: sTempString = "PLEASE NOTE THAT THE CODE NEXT TO THE " & _ Chr(34) & "REF:" & Chr(34) & " NOTATION INDICATES" -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Maureen" wrote in message ... How can I include quotes around a word in a text string? For example: sTempString = "PLEASE NOTE THAT THE CODE NEXT TO THE "REF:" NOTATION INDICATES" -- Maureen |
#4
|
|||
|
|||
![]()
On Thu, 2 Mar 2006 07:58:28 -0800, Maureen wrote in
microsoft.public.outlook.program_vba: How can I include quotes around a word in a text string? For example: sTempString = "PLEASE NOTE THAT THE CODE NEXT TO THE "REF:" NOTATION INDICATES" Double them: sTempString = "PLEASE NOTE THAT THE CODE NEXT TO THE ""REF:"" NOTATION INDICATES" -- Michael Bednarek http://mbednarek.com/ "POST NO BILLS" |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
last string in txt file | Leech | Outlook and VBA | 1 | February 10th 06 08:13 AM |
how do I include e-mail 2 and 3 in my distribution messages | andy | Outlook - Using Contacts | 2 | February 8th 06 05:34 PM |
Need String from Email Subject | CondtllyFrmttd | Outlook and VBA | 1 | January 25th 06 05:26 PM |
Use Part of Subject as String | CondtllyFrmttd | Outlook - General Queries | 0 | January 23rd 06 07:57 PM |
string variable that contains formatting | Martin | Outlook and VBA | 4 | January 19th 06 10:49 AM |