Vb.net 2003 Quirks

DekaFlash

Well-known member
Joined
Feb 14, 2006
Messages
117
Programming Experience
1-3
Is there any reason why the following would happen.

1) Minimize button doesn't function.
2) Button and DataGrid widen beyond Design time settings.

Thanks
 
Check enabled property

1) check whether the minimize property is set to true. In your case the form's minimize property must be False. Go to properties of the form and set minimize property to True.
2) You can adjust the width of the control using your mouse or size property of the control
 
Back
Top