Game Technologies
Visual C++
Visual FoxPro
Visual C#
SQL Server
Windows Live
VS Team System
Architecture
Windows Vista
Smart Device
.NET Development
Visual J#
Visual Basic
Microsoft ISV
Visual Studio
Software Development Network>> Windows Forms>> copyright
copyright
Hot Topic
Cannot call Close() while doing CreateHandle()
UserControl Data binding & BindingSource.EndEdit() Effect
http://localhost/TaskVisionWS don't work..
checked treeview question
Actually Click once will install or copy the files to the client?
Multi user application
Passing events on to covered controls
DataGridView master detail over intersect/junction table?
Does "DataGridView.HitTestInfo" have a "DataGrid.HitTestType.RowResize"?
Form designer generate code in incorrect order in my usercontrol
Windows Forms
Getting selected rows from IList binded DataGrid
array error
SignTool reported an error 'XmlResolver can be set only by fully trusted code.
Access key. button is invoked without pressing Alt
DataGridView Column format
TaskVision SourceCode VB W2k3 SERVER
Change publish.htm !!
combobox.selectedvalue
referenced memory message
Custom control derived from Control not responding to Click event
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
Answer this question
copyright
ibrahimkurt
B Word
Inetcor
MessageBox.Show("Copyright ©")
End Sub
CSharp McGyver
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
Of course I mean Word :)
/Moorstream
bill mccandless
degrem_m
char c = (char)169;
MessageBox.Show(c.ToString());
mmresnick