resizing

Maintain a controls Aspect Ratio on Resize

I have a panel control with a picture box in it. How can I maintain the aspect ratio of the panel control when Resizing the form it's on? ...

How should I change this declaration?

I have been given a header with the following declaration: //The index of 1 is used to make sure this is an array. MyObject objs[1]; However, I need to make this array dynamically sized one the program is started. I would think I should just declare it as MyObject *objs;, but I figure if the original programmer declared it this way, t...

dataGridView in Visual C# Express won't resize on Windows Vista

I recently upgraded my main computer and am now working in windows Vista. My dev environment is Microsoft Visual C# 2008 Express Edition. I have a program that uses a DataGridView that I started developing on my old Win XP machine. Everything is now working fine on Vista except that the dataGridView won't resize when I resize the main...

What is the mechanism that keeps various sections on page from being repositioned when browser resizes

In this web site when you shrink the browser window the white space on the left and right disapear first, following by the shrinking of the right panel, followed by the main container panel. I have recently started to use ASP.NET MVC and in my test case my containers drop below the other containers as I resize the browser window. I am us...

How do I Resize entire screen?

I want to be able to re size everything that is displayed - taskbar, windows, desktop - everything and put it in a border. What is the best way to accomplish this? I'm thinking DirectX, but I am not that familiar with it. I'm not sure what technologies would accomplish this, but I bet it would have to be rather low level. ...

Resizing a control in WPF.

I have a set of user controls in my wpf form and want to give ability to user to resize them. Whenever a user clicks on a control total 8 boundary rectangles should appear and then by dragging any of them, the user must be able to resize the control. Please help me on this. ...

Bind the height of a grid row to it's contents in WPF

I have a grid with a few rows. In the top row, I have an ItemsControl that is bound dynamically to a collection and uses a DataTemplateSelector and ItemsPanelTemplate (with a single horizontally arranged WrapPanel). Here's a stripped-down version of what I have so far: <Grid> <Grid.RowDefinitions> <RowDefinition Height="40...

Programatically preventing Firefox to auto-resize images

By default in Firefox every time you open an image it will re-size to fit within the browser window, now if you view a lot of images this can become annoying having to click on the image every time it loads to see it full size. There is a way to switch off that in about:config, but this is not a solution for a broader public. Is there...

Delphi - GridPanel does not adjust at first resize

Hi. I have a problem I am unable to solve even though I spend long time trying to do it. I usually use GridPanels to align controls on forms. It has, however, an annoying bug. When the GridPanel align mode is alClient and I maximize its parent window, the GridPanel adjusts to the new size of that window, however, the controls laying on...

Resize jqGrid when browser is resized?

Is there any way to resize a jqGrid when the browser window is resized? I have tried the method described here but that technique does not work in IE7. ...

Flex resizing Canvas where to put such code ? (diagram inside)

Hi all, I have two Canvas A and B, A is the child of B. A can be resized by some user actions like adding some UI components to its base. A is bounded by an other Parent canvas B which should show scolling handles if its child A gets too large. I would like A to have the same width and height of B (or really close) while the calculated...

GTK detecting window resize from the user

In GTK (or pygtk or gtkmm...) How can I detect that an application window has been manually resized by the user, as is typically done by dragging the window's edge? I need to find a way to differentiate manual resizes from resizes that originate from gtk, such as changes in window content. ...

Resizing user uploaded images in an ASP.NET project – Library?

In a rather simple ASP.NET application where the user can upload a image, mostly from his digital camera. I have to resize it to a workable size for the web and a thumbnail. What is here the best practice for? Is there a library that I in a simple way can implement without installing something on the web server. ...

Full-screen window sizing in screen (pixel) units with VS6 C++ GUI editor, MFC?

I am trying to create a full-screen control panel window with many controls: buttons, sliders, list boxes, etc. I can create a dialog window and add controls to it, but everything is scaled in dialog units. I just want to create a window in the GUI editor that is scaled in pixels, not derived units like dialog units. I can sort of...

How best to resize XAML with dynamic text

In a Silverlight interface I'm working on I have the need to resize a stack panel when its container resizes, to prevent the text in it from being truncated. The text in question is added at runtime from language files, depending on the language the user has selected. As the lengths of strings can vary considerably between languages I'm ...

Resizing of frame with DYNAMIC external source

I have tried.... I have tried a lot many things... Even searched Yahoo! , Google and Bing... Why oh! why does the code not reveal... I just want to complete it and put the quality seal.... External frame resizing... is so f'king tensionizing..... I need to find the solution.... before in my head it causes more pollution.... O...

How can I scale an entire web page with CSS?

Using Firefox, you can enlarge an entire web page by simply pressing CTRL +. What this does is proportionally enlarge the entire web page (fonts, images, etc). How can I replicate the same functionality using simply CSS? Is there something like page-size: 150% (which would increase the entire page portions by x%?) ...

How to force a resize from a child to a parent

I have a page-like flex application. In my main application is a holder (a canvas) that displays all the pages. The problem is that the components that are loaded inside the holder are bigger than the holder is when the main application starts. The holder height is set to 100% but still he gets scrollbars when I load a bigger component i...

How to crop & fill with Paperclip (or RMagick) ?

I upload a photo, it is a rectangle. How Can I get it resized and filled to a square ? I mean when the photo is horizontal positioned it should have above and under it, two white fields (for keeping the shape of a square) and when it is vertically, it should have two white fields on the sides of the photo. When I used PHP, a have used ...

Ways to go about resizing controls in resizable windows?

I have two DataGridView controls, with three buttons in between them vertically, in a VB 2005 form that need to be resized and moved around on a form resize. The code below works, and does what I want. It takes the difference between the new size and the default size, splits the height difference between the two DataGridViews, and move...