Emulating code i saw on a webpage
http://www.mikes-marketing-tools.com...s-wrapper.html
on this link there is a word wrapper that wraps the words that you type with both " and [
each line is a seperate entry that needs to be wrapped.
i want my program to produce the results seen in Broad, "Phrase" & [Exact] Match box.
how do i do this type of thing in vb?
Re: Emulating code i saw on a webpage
dim broad as string
dim phrase as string
VB Code:
broad = "[" & your_string & "]"
phrase = Chr(Hex(52)) & your_string & Chr(Hex(52))
Re: Emulating code i saw on a webpage
Quote:
Originally Posted by ggettings
dim broad as string
dim phrase as string
VB Code:
broad = "[" & your_string & "]"
phrase = Chr(Hex(52)) & your_string & Chr(Hex(52))
thanks... now how do i get this to work with a multiline text box?
Re: Emulating code i saw on a webpage
VB Code:
broad = "[" & your_string & "]" & Chr(10)