Forms :: Resize Form And All Controls In Proportion To Their Startup Size / Location

Jan 5, 2012

I have been searching for a solution to this but I can't find one. I have played with the anchor and dock properties but they are not doing what I want, so here goes... I would like to place and size all of my controls on my form and then when the form is re-sized during run time (different resolutions, full screen/windowed, etc), have everything just scale up or down accordingly. Anchoring the controls to all four sides of my form re-sizes the control properly but it doesn't move it's location in sync with the other control's size next to it, they begin to overlap each other. Am I going to have to code my own scaling code for each control in my program?

View 5 Replies


ADVERTISEMENT

Resize Form & Controls To Screen Size VB 2008

Jun 10, 2011

Anyone knows how to change the Forms and controls of the project as the Screen resolution of the computer changes?

View 1 Replies

Resize A Form , Its Controls According To User's Screen Settings And Physical Monitor Size?

Nov 19, 2010

I am creating an application for a company and this CD will be distributed to hundreds of people. Many users will have different computer screen size and different screen settings such as their resolution set to 1024 x 728 and their monitor size 17" inches.

I noticed when I loaded the application on a different computer with different settings the application was to big for the screen and did not work. I notice that lot of other programs from microsoft resize their controls and text but never knew how they did it. How can I resize the form and control according to the user's setting.

View 6 Replies

VS 2008 Resize Of Parent Form Keeps Relative Size/Loc Of Child Forms?

Sep 17, 2010

I want a set of child forms to keep their relative sizes and locations to their parent form when parent form is resized. So if one child form is opened and covers the lower right quadrant.. it will remain a quadrant for whatever resize is done on parent form.

View 3 Replies

Forms :: Resize Controls In Form In Runtime?

Aug 4, 2010

i want to when in run time i resize the form manually all the controls in the form to resize automatically so how can i do that?

View 1 Replies

Change Controls Size And Location Based On The Change Of Font Size?

Jun 14, 2010

I have the Context Menu Options like ( Small Font , Large Font ) based on the selection I want to change the size of the Font in the Controls,Control's Size & location(x,y,height,width). The resize of the controls should not affect the look and feel of the forms.

View 5 Replies

Designer Changing Location And Size Of Custom Controls

Oct 8, 2011

I have come across a problem with visual studio 2010 & vb.net. i have a few custom controls on the form and few standard controls. When i build the application, the custom controls automatically change size and location. Anchoring and Dock properties are fine. Anchored to Top Left without dockstyle. Even if i fix the location and size in design mode, after i run the application the controls again change back to weird position.

View 2 Replies

Forms :: Resize A Picturebox To The Image's Size ?

Jun 1, 2010

I'm currently in the process of making a dynamic signature generator, and I want to make the user be able to see what he would get... So I thought of putting a browse button and allowing them to load up a background image for their signature, but I also want the picturebox to resize according to that image's size. I need them to be the same size because of the image's X, Y are needed for the signature.

So I'm using this code for that:

LocalMousePosition = PictureBox1.PointToClient(Cursor.Position)
xy.Text = ("X=" & LocalMousePosition.X & "," & "Y= " & LocalMousePosition.Y)

It works fine, but it only gets the coordinates for the picturebox, not the actuall image, so I think if the picturebox is the same size as the picturebox it would get them just fine..

View 1 Replies

Forms :: How To Resize Controls

Sep 1, 2009

im am working on a form with a few textboxes and buttons, the problem is when the form is resized or maximized the controls stay small. If someone could please show me how to resize the controls as the form is being resized.

View 2 Replies

VS 2010 Reading / Loading Controls Size And Location Back From A Txt File

Mar 14, 2011

im toying with an idea based round having controls end user movable at runtime, and having a function to save the current position/location of all the controls, so then i can skip through presets i already made as it were. Ill be using .ini files eventually (just testing with txt files to check it was a valid aproach) I can get all the info i need into the txt file, the problem is how to read it back into the app?

[Code]...

View 3 Replies

Resize Fonts And Controls And Forms

Mar 15, 2011

I would like to resize to increase or decrease font size in a form.Is there a way that one can also scale up this with repect to the controls the fonts are in.

View 2 Replies

Form(s) Location On Startup (error On Aeonhacks Theme)

Jun 8, 2012

I think there is something wrong with the themes i use, aeonhacks' by the my program is all okey now, except the startup even i set the location on centerscreen when i run it, it doesnt show up on the center screen? anyone encounter this before?

View 2 Replies

Can't Resize Designer Forms / Controls Using Mouse

Jan 26, 2011

Visual Studio 2010 Windows Applications Visual Basic-- not able to resize or move controls or form with my mouse in designer window. When hover over sizing handles or form edge, cursor changes to double headed area but nothing moves. I can drag controls with mouse onto form. I successfully resized by pressing shift key and using keyboard arrow keys. I am using Toshiba Satellite L665D, Window 7 64x.

View 3 Replies

Auto-resize Form And Location Of Buttons

May 25, 2012

Ive already tried searching regarding w/ my problems and unfortunately, I found nothing. Anyway, my form is automatically resized to full screen once it is started. here's my code:

[Code]...

View 2 Replies

Resize Labels According To The Size Of The Form?

Dec 19, 2011

I have an application in VB. In a single form are lots of labels with atleast 3 different sizes. What I want to do is, when I resize the form or maximize it, all of the labels and pictureboxes int the form are also going to be resized.

View 1 Replies

VS 2008 Resize Forms And Controls When Execute Exe File In Any Windows?

May 14, 2012

i am working Vb.NET 2008 Windows Appl. I was created some Forms which are having some controls. If i run the Appl in my sys its working fine. But if run .exe file into other system like Windows 7 with 125% text size, then the forms and Controls are expanding i want to scroll it out. Is it any solution for fit these Controls and Forms or comapre the screen size and resize the forms and controls automatically..

View 1 Replies

Lock The Size Of A Form So The User Can't Resize It?

Jan 25, 2009

How do you lock the size of a form so the user can't resize it?

View 3 Replies

Resize The Form Size On Button Click Event?

Jan 22, 2010

I want to resize the form size on button click event.

View 2 Replies

Resize All The Controls On The Form?

Mar 2, 2012

I have a program that has a TabControl on it. There is code to resize all the controls on the form when the window is resized, regardless of what tab is selected in the TabControl. My issue is that the form will only resize the controls on the selected tab. So if the window is maximized, for example, it will resize the controls on the selected tab, but if the user changes tabs, the new tab will still have the original, non-maximized sizes on it. This works the same with un-maximizing the form, the controls on other tabs will remain the size they are supposed to be when the form is maximized. Here's some example pseudo-code to give you an idea. Assume button1 is on tab1 and button2 is on tab 2.

sub form_resize()
button1.width = x
button2.width = x2
button1.height = y
button2.height = y2
end sub

So the code is supposed to resize all controls regardless of the tab. But if tab 1 is selected it will visually resize button1 but it wont resize button2. To counter this, I simply made the form resize by 1 pixel and then move back to the original size when the user changes tabs. BUT this wont work for maximizing/un-maximizing the form. I tried telling it to detect window state on tab select so if the form is maximized, it will un-maximize it, perform the resize, and re-maximize the form but this doesnt seem to work.

automate this somehow so that regardless of selected tab or window state, all controls will be resized to the proper, current form size?

View 3 Replies

Resize Form And Controls?

Oct 1, 2010

find a way of resizing my form + controls. I did manage to resize the form and all controls (only standard controls in visual studio) i could get the dotNetBar material to resize?

View 1 Replies

Forms :: Startup A Second Windows Forms Inside The Parent Form?

Aug 26, 2010

I would like to know if its possible to start up a second windows forms inside the parent form. Ex: A button is pressed and a new form is showed. I would like to keep that new form inside the parent form, and have it not be able to go outside the parent form.

View 2 Replies

Resize And Relocate Controls On Form?

Aug 7, 2009

How can we resize and relocate controls on form when form is resized by the user ?

View 2 Replies

Resize Form / Controls According To Resolution?

Nov 23, 2009

I was an idiot and designed my VB app on a 17inch monitor in a 1280X1024 resolution completely forgetting about what it would like on another machine. This might be a long shot, but is there an easy way to get the resolution of the users monitor and re-size the controls and form accordingly?

View 4 Replies

VS 2010 - How To Resize Controls On Form

May 29, 2012

Is it possible to resize my controls on my form when I run it? The problem I have is that I have created a windows application which has a maximize state on all forms but on some machines my controls go missing (mostly on widescreen laptops). Ideally some way of resizing my controls would probably be best? So is that possible?

View 10 Replies

Resize The Form To A Suitable Size Depending Upon The Height And Width Of An Image?

Apr 17, 2011

I am developing a iimage veiwer.

1. i need to resize the form to a suitable size depending upon the heght and width of my image

2. their are two buttons one should always be at the bottom right corner and other always at the top right corner.

3. How do i make the picture fade in.

View 4 Replies

Make Controls On Form Resize When Form Resizes?

Nov 21, 2009

How would i make so when the user resizes the form the controls on the form resizes to what ever(ex: form become full screen textbox is full screen.

View 2 Replies

Making Controls Resize With The MDI Child Form

Jan 23, 2011

Does anyone know how to make the controls on an MDI Child form resize along with the form itself? I inherited a project from another developer and I was asked specifically to make the form resize. With advice I received on this forum I now have the form resizing as expected. It will minimize, restore and maximize as well as resize with the mouse pointer.

The problem is that when I increase the size of the form all I get is more blank space on the screen. The controls to do change at all. Although I thin this is normal behavior for a Windows form my bosses all seem to think that the controls resize on every other widows for they see. I wondered if anyone had successfully accomplished this. I was already advised to write a FormResize handling subroutine and this unfortunately did not work.

View 10 Replies

Resize Form Controls Datagrid View?

Mar 26, 2012

i have a windows form on which i have

1. COmbobox
2. Date picker
3 button
4 datagridview

when my form loads, i have set the property to maximize, but how do i make the datagridview width and height(bottom) resize when the form is resized.

View 5 Replies

VS 2010 - Form Resize And Resizing Controls

Mar 20, 2011

Where is the best place to resize a control on a form when a form is resized?....I'm currently using the Form1_SizeChanged event and seems to work ok. Also is there any need to check in the forms resize event if the form is in a minimized state before resizing controls?.,.. in VB6 if you try to resize a control when the form is minimized you get an error, but I don't see that happening in BV10 Form1_SizeChanged event, does VB10 automatically ignore resizing controls when a form is minimized or something?

View 2 Replies

[2008] How To Resize Form Controls Programmitically

Sep 21, 2008

how do i make the height of listview automatically resize, when the form is maximized? The anchor property does not work well with this listview because it is a custom control. Does anyone knows how to programmatically resize the height of a listview whenever the user maximizes the parent form like this picture:

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved