> VC++Express;
> I have a form with one button. This is my code for the button1 click
[quoted text clipped - 17 lines]
>
> Tony
Just a thought, read the documentation?

Signature
============
Frank Hickman
NobleSoft, Inc.
============
Replace the _nosp@m_ with @ to reply.
Peter Oliphant - 01 Nov 2007 19:15 GMT
>> Just a thought, read the documentation?
which can be found here assuming you are using this 'flavor' of Button
class:
http://msdn2.microsoft.com/en-us/library/system.windows.forms.button(VS.80).aspx
[technically there is no 'documentation' since the languages are shipped
without any, and the word implies 'documents' are involved...hehe]
Also, changing the button font is a bit tricky. You have to create a brand
new Font instance that you like externally and store it in the Button's
Font^ member. You can't just change the properties of the Button's Font
instance which already part of the Button instance, all f it's properties
are read-only...
[==Peter==]
>> VC++Express;
>> I have a form with one button. This is my code for the button1 click
[quoted text clipped - 19 lines]
>
> Just a thought, read the documentation?