473,787 Members | 2,938 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Resizing Form and Controls

79 New Member
Hello,

I am want to Resize my form and form controls based on the users resolution.

For example :- i am making this application in 1024x768. it obviously works and looks well too me but when my user runs this application on his pc it looks horrible and wierd because his Resolution is 800x600.

I found a snippet on this forum to resize the window but that just isn't what i'm looking for - i want the controls and form both to resize depending on the user resolution. Like if the user has a 800x600 and the app was made with 1024x768 it should automatically resize the form and its form controls to fit on the screen.

Could some one help me with this i am really lost :( in this form i also saw some one saying to use % sign to assign size to form and its elements but i tried this and it doesn't work :s it says its invalid.

I am using VB.net - Visual Studio 2005 - PLZ Help :(

Thank you,
Regards,
Sep 23 '08 #1
14 2360
Curtis Rutland
3,256 Recognized Expert Specialist
This is going to be difficult, because you want server code to respond to client conditions.

Some or all of this will need to be done in Javascript, like detecting the size of the window, and probably resizing the controls as well. We have a javascript forum that you can try for help on this.
Sep 23 '08 #2
Plater
7,872 Recognized Expert Expert
Unless this is a windows application, in which case it *could* be much easier.
Although 800x600 should have gone away along time ago. I can't even MAKE my computers do that resolution anymore
Sep 23 '08 #3
Curtis Rutland
3,256 Recognized Expert Specialist
Good call Plater. I assumed that this was web based.
Sep 23 '08 #4
zubair1
79 New Member
Thanks for tips guys

But it isn't a Web Application


It a Windows Application sorry i wasnt very specific on the issue, its a windows app i'm not sure about there but currently here where i am many people are using this resolution.. i dont but still 800x600 is an example.

To more simple - i want my app to automatically resize the form size to fit the current resolution and that includes the form controls too :( i'm postive its possible since many other apps i seen have this feature.

I'm not sure how to accomplish this though :(

But you guys are pretty lucky :) having all those cool PCs and all the other technologies at your fingertips - when things become old there it arrives here :( i hope things get much more faster here soon :)

Thank you!
Regards
Sep 23 '08 #5
jg007
283 Contributor
a quick serach on this forum would have found -

http://bytes.com/forum/thread828652-...esolution.html

http://bytes.com/forum/thread799227-...esolution.html

http://bytes.com/forum/thread773049-...esolution.html

I haven't tried the code but it should give you somewhere to start
Sep 23 '08 #6
jg007
283 Contributor
not sure if this is any use but this resizes 3 buttons and moves them so that they line up on the right so I have posted it in case you can use some of it

Expand|Select|Wrap|Line Numbers
  1.  
  2. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  3.  
  4.         Me.Location = New System.Drawing.Point(0, 0)
  5.  
  6.         Me.Size = New System.Drawing.Size(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height)
  7.  
  8.  
  9.         Dim tempx, tempy As Integer
  10.         Dim screenx, screeny As Integer
  11.         Dim tempo As System.Drawing.Point
  12.         tempo = New System.Drawing.Point(1, 1)
  13.  
  14.         For Each x As System.Windows.Forms.Button In Me.Controls
  15.  
  16.  
  17.  
  18.             tempx = x.Size.Width
  19.             tempy = x.Size.Height
  20.             screenx = Me.Size.Width / 100
  21.             screeny = Me.Size.Height / 100
  22.             tempx = tempx / 100
  23.             tempx = tempx * (screenx * 50)
  24.             tempy = tempy / 100
  25.             tempy = tempy * (screeny * 33)
  26.             x.Size = New System.Drawing.Size(tempx, tempy)
  27.  
  28.  
  29.  
  30.  
  31.         Next
  32.  
  33.         tempo = New System.Drawing.Point(1, 1)
  34.  
  35.         For Each x As System.Windows.Forms.Button In Me.Controls
  36.             x.Location = tempo
  37.             tempo = New System.Drawing.Point(x.Location.X, x.Location.Y + x.Height)
  38.  
  39.         Next
  40.  
  41.     End Sub
  42.  
  43.  
Sep 23 '08 #7
Kapps
16 New Member
One approach to this is to check out Screen.PrimaryS creen.Bounds.He ight/Width. This will show you the total area, minus the task bar, of your monitor (resolution), or if you want just the form, you could just check out Height/Width. Upon resizing, you would have to check what the current height and width is, and then would have to just specify a constant value for the portion of the screen you want it to take, and find an event that's called every time this should change (in particular, ReSize).
Sep 23 '08 #8
Plater
7,872 Recognized Expert Expert
I *think* if you build your controls with anchoring and such, much of the position-resizing will be automatic when you change the size of the form.
As for changing widget size, that might require some math.
Sep 24 '08 #9
zubair1
79 New Member
Hi,

Thanks for all the help and support guys :)

Thanks for the code jg007, really appreciate it. - i can't seem to get it to work in my app.

I also can't understand Anchor property :( it just says left / top / right / bottom.

I have 1 TAB, 2 Buttons, 2 Panel, 2 Picture Box, 1 MultiLine Textbox, 1 Progressbar :(
Sep 24 '08 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

0
1154
by: Tony | last post by:
Derived Forms resizing in dotnet. (Fix) Problem: If you have a form base class: public frmBase : System.Windows.Forms { public frmBase { // DefaultFormFont is new Font("Tahoma", 10);
11
18837
by: Jozef | last post by:
I have some old code that I use from the Access 95 Developers handbook. The code works very well, with the exception that it doesn't seem to recognize wide screens, and sizes tab controls so that they are too big and wind up covering up some of the fields on the main form. Is there any good code out there that works in a similar fashion that will also either a) stretch the form width wise on widescreens or b), rely on height rather than...
1
4886
by: Nikhil Patel | last post by:
Hi all, I dynamically create new controls and display them on the form. My problem is that the user has to resize form manually to see controls whose location property points to a point outside the form's area. So can you please show me a way to resize the form after adding a dynamic control so whose Location points to a point outside the form's boundary. So that the control can be displayed without resizing the form manually? Thanks...
2
3962
by: Vaughn | last post by:
Where can I get information on automatic resizing of controls when the form changes size (eg. if I dynamically increase the size of my form, the listview inside should automatically increase in size ). Thanks.
8
15048
by: Chris | last post by:
Hi, In design mode I built some windows with some controls (e.g. listboxes, labels, chgeck boxes etc.) in it, and I did set the property for the window size is set to normal. Now, when I run my app the first user's action is to maximize the window, but the controls inside the window are not resized simultaneously with my window, resulting in a real meshy window.
12
6736
by: Søren Reinke | last post by:
Hi there I have a little problem. How do i make sure that a graph is not redrawn while the form with the graph is being resized ? I have tried to add a mouse up/down event handler on the form1, but it dosn't get called when resizing :( I would like to be able to resize my form, but also make sure the graph is
4
6146
by: Thomas Richter | last post by:
Hi, I can't get of the black flicker when I resize my form. this = Mainform : System.Windows.Forms.Form If I set the size from 300 to 500 I see for ca 500ms some black areas. I try to solve it with: this.SetStyle(ControlStyles.DoubleBuffer, true); this.SetStyle(ControlStyles.UserPaint, true); this.SetStyle(ControlStyles.AllPaintingInWmPaint, true); this.SetStyle(ControlStyles.ResizeRedraw, true); But it doesn't work.
1
1723
by: Benz. | last post by:
Hello all, I'm having a very strange problem. I've an MDI application with many child forms. In 1 of my Child forms (Say frmA), I've a few design time controls. The forms Autoscroll property is TRUE. At runtime I dynamically generate a few other controls and place them at proper position according to my forms size. If I try to resize my MDI parent form OR move around to any different child form and return to this form after resizing i.e....
13
2511
by: Martin Ho | last post by:
I know this must be trivial for many of you. But I am playing with this and can't figure it out. I have a form, on that form is one panel which has 3 textboxes, when I run my program and maximize the form I want to resize my 3 text boxes according to the size of the form. Each text box should take 33% of the panel's width and full hight of the panel's height. Resizing of the panel is easy with docking... but these 3 textboxes are driving...
1
2715
by: =?Utf-8?B?U3RldmUgUmFuZGFsbA==?= | last post by:
I have a form with a number of panel controls on it. I have overriden the paint event (of the panel controls) to provide custom painting. What I have done is to use the Paint event to paint the background colour of a number of panel controls to be a gradient colour. This works fine. Is there a better way?? The problem I have is that when I resize the parent form I get alot of flickering as the paint events are constantly fired. I have...
0
9498
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10172
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10110
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9964
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8993
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7517
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5398
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5535
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3670
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.