form title bar

JuggaloBrotha

VB.NET Forum Moderator
Staff member
Joined
Jun 3, 2004
Messages
4,530
Location
Lansing, MI; USA
Programming Experience
10+
is there a way to have the form show with the windows xp "windows classic" theme for my application regardless what the theme is on the system

i've noticed that with if the theme on the system is anything other than windows classic the title bar is taller and therefor the form's height is bigger (taller) which means some stuff (placed in code) doesnt appear correctly
 
You can make your code independent of the border by using the ClientSize property instead of the Size property as I assume you are doing :).
 
Back
Top