copyright

Hi

I wonder how I could write a copyright character in a messagebox as text

Thanks
Moorstream


Answer this question

copyright

  • ibrahimkurt

    More evidence that I'm slow.  :~ 
  • B Word

    I think he meant to say "word" based on your initial solution...
  • Inetcor

    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

  • CSharp McGyver

    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

  • Bob Arnson MSFT

    Thanx for all the answers...

    Of course I mean Word :)

    /Moorstream

  • bill mccandless

    Aprt from MS Word, try character map
  • degrem_m

    this will work equally well



    char c = (char)169;
    MessageBox.Show(c.ToString());

  • mmresnick

    OK, I give. What does that mean, "...copy it from world."
  • copyright