How do I set the text property of label on a form as above ?
Copyright © 2006
Collapse
This topic is closed.
X
X
-
Alan TTags: None -
Michael C
Re: Copyright © 2006
"Alan T" <alanpltseNOSPA M@yahoo.com.auw rote in message
news:OTXoiun8GH A.3264@TK2MSFTN GP04.phx.gbl...Copy/PasteHow do I set the text property of label on a form as above ?
>
>
-
Marc Vangrieken
Re: Copyright © 2006
You could do it by code using the unicode copyright code.How do I set the text property of label on a form as above ?Copy/Paste
string label = "\u00a9 Copyright 2006";
You can find more information at:
Comment
-
Christof Nordiek
Re: Copyright © 2006
Or simple put the copyrightsign into the string literal.
string label = "Copyright © 2006";
"Marc Vangrieken" <marc.vangrieke n@gmail.comschr ieb im Newsbeitrag
news:1161152904 .964848.276000@ m73g2000cwd.goo glegroups.com.. .>>How do I set the text property of label on a form as above ?Copy/Paste
You could do it by code using the unicode copyright code.
>
string label = "\u00a9 Copyright 2006";
>
You can find more information at:
>
>
Comment
-
Dave Sexton
Re: Copyright © 2006
Hi Alan,
In the VS.NET properties window (with the Label selected in the designer), find the Text property and enter the following:
Copyright
Then enter the following key combinations:
ALT+(0 1 6 9)
Then, enter the remainder of the string:
2006
(While ALT is held down press, 0, 1, 6, then 9, subsequently, and then release ALT.)
© :)
If you're curious about other key combinations then Start-->Run-->charmap and you'll see the key combination listed on the bottom of
the screen for the selected character, but only if there is a valid key combination available.
--
Dave Sexton
"Alan T" <alanpltseNOSPA M@yahoo.com.auw rote in message news:OTXoiun8GH A.3264@TK2MSFTN GP04.phx.gbl...How do I set the text property of label on a form as above ?
>
Comment
-
Jon Skeet [C# MVP]
Re: Copyright =A9 2006
Christof Nordiek <cn@nospam.dewr ote:That means you need to be careful:Or simple put the copyrightsign into the string literal.
string label = "Copyright © 2006";
a) when transferring the source (including within source control
systems)
b) when posting it on newsgroups
c) when compiling
If you stick to ASCII you're far less likely to run into issues.
--
Jon Skeet - <skeet@pobox.co m>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Comment
-
Alan T
Re: Copyright © 2006
Hi,
I don't know why I cannot produce this special character, this was what I
did:
Put a label on a form,
select the label
select the text property
hold ALT and then type in 0169, release ALT.
There was nothing.
"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message
news:%23R%232Ff r8GHA.1252@TK2M SFTNGP04.phx.gb l...Hi Alan,
>
In the VS.NET properties window (with the Label selected in the designer),
find the Text property and enter the following:
>
Copyright
>
Then enter the following key combinations:
>
ALT+(0 1 6 9)
>
Then, enter the remainder of the string:
>
2006
>
(While ALT is held down press, 0, 1, 6, then 9, subsequently, and then
release ALT.)
>
© :)
>
If you're curious about other key combinations then Start-->Run-->charmap
and you'll see the key combination listed on the bottom of the screen for
the selected character, but only if there is a valid key combination
available.
>
--
Dave Sexton
>
"Alan T" <alanpltseNOSPA M@yahoo.com.auw rote in message
news:OTXoiun8GH A.3264@TK2MSFTN GP04.phx.gbl...>>How do I set the text property of label on a form as above ?
>>
>
Comment
-
Dave Sexton
Re: Copyright © 2006
Hi Alan,
I failed to mention that the numbers have to be entered on the number pad with NumLock on.
HTH
--
Dave Sexton
"Alan T" <alanpltseNOSPA M@yahoo.com.auw rote in message news:%237d24C18 GHA.3264@TK2MSF TNGP04.phx.gbl. ..Hi,
>
I don't know why I cannot produce this special character, this was what I did:
Put a label on a form,
select the label
select the text property
hold ALT and then type in 0169, release ALT.
There was nothing.
>
"Dave Sexton" <dave@jwa[remove.this]online.comwrote in message news:%23R%232Ff r8GHA.1252@TK2M SFTNGP04.phx.gb l...>>Hi Alan,
>>
>In the VS.NET properties window (with the Label selected in the designer), find the Text property and enter the following:
>>
>Copyright
>>
>Then enter the following key combinations:
>>
>ALT+(0 1 6 9)
>>
>Then, enter the remainder of the string:
>>
>2006
>>
>(While ALT is held down press, 0, 1, 6, then 9, subsequently, and then release ALT.)
>>
>© :)
>>
>If you're curious about other key combinations then Start-->Run-->charmap and you'll see the key combination listed on the bottom
>of the screen for the selected character, but only if there is a valid key combination available.
>>
>--
>Dave Sexton
>>
>"Alan T" <alanpltseNOSPA M@yahoo.com.auw rote in message news:OTXoiun8GH A.3264@TK2MSFTN GP04.phx.gbl...>>>>How do I set the text property of label on a form as above ?
>>>
>>
>
Comment
Comment