As title, please help
As i try button1.font.size is readonly object, how can i change it while program runnging
thank
As title, please help
As i try button1.font.size is readonly object, how can i change it while program runnging
thank
If you just want to change to size (not the font proper) then you can use this
HTHCode:Button1.Font = New Font(Button1.Font.FontFamily, 16, FontStyle.Regular)
kevin
thank a lot , it's work