|
-
Sep 9th, 2000, 03:15 PM
#1
Thread Starter
Frenzied Member
how do I put things like ® (alt + 0 + 1 + 7 + 4) into a text box?
NXSupport - Your one-stop source for computer help
-
Sep 9th, 2000, 03:35 PM
#2
_______
<?>
as a string?
Text1.Text = "® (alt + 0 + 1 + 7 + 4)"
"A myth is not the succession of individual images,
but an integerated meaningful entity,
reflecting a distinct aspect of the real world."
___ Adolf Jensen
-
Sep 9th, 2000, 03:35 PM
#3
Thread Starter
Frenzied Member
no, I'm sorry, I ment command button
NXSupport - Your one-stop source for computer help
-
Sep 9th, 2000, 03:40 PM
#4
_______
<?>
Command1.Caption = "® (alt + 0 + 1 + 7 + 4)"
"A myth is not the succession of individual images,
but an integerated meaningful entity,
reflecting a distinct aspect of the real world."
___ Adolf Jensen
-
Sep 9th, 2000, 03:43 PM
#5
Thread Starter
Frenzied Member
thanks, I was tring to put it in the propertiy window, and it didn't work, I never thought about the code, thanks
NXSupport - Your one-stop source for computer help
-
Sep 9th, 2000, 04:26 PM
#6
You can do it in the property window by using the Windows "Character Map" program. Run that program, find the character you want, and Copy it. Go back into VB and paste it into the Caption property in the property window.
"It's cold gin time again ..."
Check out my website here.
-
Sep 9th, 2000, 04:28 PM
#7
Thread Starter
Frenzied Member
I tried that, it didn't work... also I can't get the first ascii character to appear in a command button in any way
NXSupport - Your one-stop source for computer help
-
Sep 9th, 2000, 04:34 PM
#8
Monday Morning Lunatic
What - character 0? You're not allowed to, as it is used to mark the end of a string in C++, which is what VB is written in.
I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
-- Linus Torvalds
-
Sep 9th, 2000, 04:37 PM
#9
Dimava - I beg to differ, but the character map thing will work, as I just did it. In character map, you have to "select" first, then "copy". In the VB property window for the command button caption, you should then be able to paste.
"It's cold gin time again ..."
Check out my website here.
-
Sep 9th, 2000, 05:37 PM
#10
Thread Starter
Frenzied Member
ok... how about characters 1-18 they dont work either
NXSupport - Your one-stop source for computer help
-
Sep 9th, 2000, 05:49 PM
#11
That this ASCII business depends on which font to use. Try switching to a font such as Times New Roman and things should be cleared up.
-
Sep 11th, 2000, 04:34 AM
#12
Conquistador
try this also:
Code:
Command1.Caption = "Microsoft" & Chr(174)
easy!
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
|