|
Hi
I wonder how I could write a copyright character in a messagebox as text?
Thanks Moorstream |
| MigrationUser 1 Friday, August 15, 2003 11:21 AM |
The Copyright character © is in the standard symbol set for Windows. For instance, me not remembering how to do this, I went to MS word and clicked on the Insert>Symbol dropdown menu and selected the symbol. Then I copied it here. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click MessageBox.Show("Copyright ©") End Sub |
| MigrationUser 1 Friday, August 15, 2003 3:24 PM |
this will work equally well
char c = (char)169; MessageBox.Show(c.ToString());
|
| MigrationUser 1 Saturday, August 16, 2003 4:47 AM |
Thanx, it worked to copy it from world.
Unfortunately the car example did not work for me. I guess it is C# code and I write my program in VB.NET. I should have specified that.
Thanx for the answers /Moorstream |
| MigrationUser 1 Saturday, August 16, 2003 5:24 AM |
OK, I give. What does that mean, "...copy it from world."? |
| MigrationUser 1 Sunday, August 17, 2003 10:11 AM |
I think he meant to say "word" based on your initial solution... |
| MigrationUser 1 Monday, August 18, 2003 11:29 AM |
More evidence that I'm slow. :~ |
| MigrationUser 1 Monday, August 18, 2003 11:52 AM |
Aprt from MS Word, try character map |
| MigrationUser 1 Monday, August 18, 2003 10:34 PM |
Thanx for all the answers...
Of course I mean Word :)
/Moorstream |
| MigrationUser 1 Wednesday, August 20, 2003 1:13 PM |