Re:Making App's Look the Same
Quote
> if the form is smaller due to a larger resolution then i want the buttons
> and stuff to be smaller too
// There are a couple of possible solutions (although I recommend you
// only the 3rd one):
// 1. Use the ScaleControls(), ScaleBy() or ChangeScale() methods to
// rescale all components contained on your form, and, if needed,
// the form itself.
// 2. Use a for-loop to go through all your components (see the
// Components and ComponentCount properties) and change their
// Width, Height, Left, Top, and even Font, properties.
// 3. Use a third-party component. There's a complete list of "Sizers"
// components at:
// http://www.torry.ru/sizers.htm
// GTSizer is probably the most popular one, but you're always free to
// choose the one you want.
// --
// Yoto Yotov