altering the size of a toolstrip
I have a toolstrip on a form I want to make smaller. Here is the code that I sincerely thought would do the job:
Code:
.tlsGeneralForm.Font = New Font("Times New Roman", 4, FontStyle.Regular)
.tlsGeneralForm.ImageScalingSize = New Size(10, 10)
Is that the wrong properties? So is there a way I can make this happen?
Re: altering the size of a toolstrip
The ToolStrip component uses system default sizing. You can find those default properties with the GetSystemMetrics API and modify system properties with the SystemParametersInfo API
Re: altering the size of a toolstrip
Thanks Paul. I took a look at the material you suggested and would say, at this point, that it is way beyond my current level of skill. But at least it is possible.