How can we resize the controls of a form accordin to different resolutions???? ???
resizing the controls of a form according to screen size in vb.net
Collapse
X
-
always use relative height/width of your control.....som ething likeOriginally posted by almaachHow can we resize the controls of a form accordin to different resolutions???? ???
Textbox1.Width= me.width-200 or
Panel1.Height=m e.height/3
the on resolution change if your form width is changed the control width will be changed accordingly.... ...
Comment