|
-
Feb 7th, 2007, 05:44 PM
#1
Thread Starter
Lively Member
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?
-
Feb 7th, 2007, 10:42 PM
#2
Hyperactive Member
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))
-
Feb 8th, 2007, 10:37 AM
#3
Thread Starter
Lively Member
Re: Emulating code i saw on a webpage
 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?
-
Feb 8th, 2007, 10:41 AM
#4
Addicted Member
Re: Emulating code i saw on a webpage
VB Code:
broad = "[" & your_string & "]" & Chr(10)
- If you found my post to be helpful, please rate me.

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
|