|
-
November 8th, 1999, 09:02 PM
#1
Assigning a string containing a "
Quick question, how do you assign a String characters that contain a "
For example I want a string to actually contain this "anything" the word anything and the quotes ""
-
November 8th, 1999, 11:34 PM
#2
Re: Assigning a string containing a "
try this
dim msg
msg = InputBox("Type Stuff Here!")
Text8.Text = Chr$(34) & msg & Chr$(34)
hunter
-
November 9th, 1999, 02:03 AM
#3
Re: Assigning a string containing a "
Hi there,
u can use this code to add a " to a string
msg = """" & "Hello" & """"
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
|