|
-
May 19th, 2002, 03:14 PM
#1
Thread Starter
Frenzied Member
the character number of >>> " <<<
i have to add this >>> " <<< thing in a text box but because of the fact that VB uses it to seperate text from objects i cant add it what is the VB code for it? :S really must have it
-
May 19th, 2002, 03:19 PM
#2
-= B u g S l a y e r =-
two ways
VB Code:
Private Sub Command1_Click()
Text1.Text = """"
Text1.Text = Text1.Text & Chr(34)
End Sub
-
May 19th, 2002, 03:19 PM
#3
Hyperactive Member
You'll need the ascII code which you can find by typing it into a textbox and then putting a button there with the code:
Code:
msgbox asc(textbox.text)
then you can use the chr(whatever the number is)........ (I would have gave you the number but i don't have access to VB at the mo)
See ya later,
-=XQ=-
"Reality is merely an illusion, albeit a very persistent one. "
- Albert Einstein (1879-1955)
This is the coolest site ever!!!
-
May 19th, 2002, 03:20 PM
#4
VB Code:
Private Sub Command1_Click()
MsgBox "How do I put " & Chr(34) & "Quotes" & Chr(34) & " around word in a string?"
MsgBox "How do I put ""Quotes"" around a word in a string?"
End Sub
-
May 19th, 2002, 03:21 PM
#5
Thread Starter
Frenzied Member
yeah got it.. thanks for the fast reply dude(S)
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
|