resize

resizing the jdialogbox in netbeans

I've created an application in Netbeans IDE 6.9. I've different sizes of most of the dialog boxes. But when i run the application, all my dialog boxes have the same size and that size is that of the biggest dialog box.In the eye preview button i get different sizes, only when I run the application I get the same big size. Can anyone sugg...

stop vmware player from resizing on visual studio 2010 "start debug"

I started using a VMWare VM in order to have a clean environment in which to code. This works like a charm, but there is one issue that keeps bugging me. Every time I hit "start debugging" on my WPF application, the VMWare Player resizes out of "full screen mode" to a smaller size. Is this a problem any of you have solved? I did not fi...

Increasing the size of a WPF application

Hi all, I've just created my first WPF application (3 calculators inside 3 different tabs). The entire application has been built using widths/margins/paddings as static values, since I originally didn't know that dynamic values can be used by just putting an asterix after the value. The client has come back to me though and has asked...

Resize image before uploading PHP

Hello, I have no idea how to resize image in PHP, my code is: for ($index = 1; $index <= 2; $index++) { if (!empty($_FILES["pic$index"]["name"])) { $ext = substr($_FILES["pic$index"]["name"], strrpos($_FILES["pic$index"]["name"], '.') + 1); $dir = "../gallery/$mkdir"; HERE I NEED THE RESIZE OF THE TMP FIL...

How to resize webview correctly in landscape mode in iPhone?

I add a navigationbar, a webview and a toolbar(from top to bottom) as subviews of my viewcontroller's view. I want the navigationbar and toolbar's height shrink a little in landscape orientation so I use autoresizingmask to make the height flexible. (UIViewAutoresizingFlexibleHeight will make navigationbar and toolbar's height shrink fro...

std::vector resize() works only after clear().

I have a vector object: std::vector<std::vector<MyClass>> _matrix; It is 2d array with some data. When i trying to resize the dimensions with: _matrix.resize(_rows, std::vector<MyReal>(_colms)); //_rows and _colms are ints this command simply does nothing to the object. So to resize it i have to call first to: _matrix.clear(); a...

resize images using % in css

I am trying to create a liquid web layout using % for as many things as i can. I have hit a bump when resizing images. both: <img src="source" style="width: 20%; height: 20%;"/> and .wall_picture_block img{ width: 20%; height: 20%; } don't work properly with the height attribte. They resize the image width to 20% of the container...

.net scrollbar autoscroll problem

I'm writing an app in .net that uses the autoscroll for a layout panel in a dialog. It seems that whenever I resize the window so that the vertical scrollbars should appear, the horizontal scrollbar automatically appears also. Looking closely at it, the second scrollbar now allows me to scroll the window by 16 pixels (the width of the o...

Auto-resize IFrame

Hi All, I really need someone's help on this> I have a little image inside an IFrame that upon being clicked on, will display another image and slide down a little. How can I make the IFrame automatically get bigger or smaller, according to its contents? Thank you so much! *edit After researching this more, I have found quite a few ex...

WPF - Resizing chromeless windows using attached behaviors,..Any suggestions?

Who fancies a challenge? I'm currently working on the ControlTemplate for a chromeless Window which will be a part of a reusable theme assembly. I want the behaviors for moving, closing, minimizing and restoring to be implicit so I've written attached behaviors for this functionality which I've then included in the template. Now,..I'v...

Resize image with jQuery

Hello, The scenario: I’m building a website, which will not Host the images in its own server. Instead it will reference images from other servers. Example: The website is hosted at www.mywebsite.com, and the html of the images will be something like <img src=”http://www.otherwebsite.com” />. The images from the other servers will be...

Resizing DataGridView columns based on the grid width

I'm having a windows form. In this form I've datagrid control which has few columns with predefined width. When I resize the form either by using maximize box or using mouse, datagrid automatically resizes itself to fit the form. This is done using anchor property of the datagrid. Now I need to resize the width of the columns as well s...

How can I change the size of an array in C?

I am experimenting a little bit with gamestudio. I am making now a shooter game. I have an array with the pointer's to the enemies. I want. to when an enemy is killed. remove him from the list. And I also want to be able to create new enemies. Gamestudio uses a scripting language named lite-C. It has the same syntax as C and on the webs...

resize images and save them in a new folder

hi I need to take sequence of images as input from a folder and after resizing them I should save them in an new folder using matlab ...

jQuery script to scale up or down thumbnails on window resize

Hi I have a site with width 100% and height 100% and overflow hidden on the body. So its a fullscreen website using a jquery full screen background image plugin. On one page I have a list of thumbnails, each thumb is set to float left so it fills the entire window with thumb images. With overflow set to hidden, when too many thumbnail...

Resizing custom forms (with drop shadow effect) and controls on mouse drag event in c sharp?

Hi, In my application I have to resize forms and all its control on mouse drag effect and forms should have drop shadow effect the problem is that all my forms are custom one (with no boarder). Thanks in advance ...

How can I resize an image from a database in C#, in good quality

Hi, I have the following C# code (not mine) which pulls an image out of a database and displays it on a web page: public partial class Image : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { getFullImage(); } public void getFullImage() { SqlConnection objCon = new SqlCo...

vector resize() automatic fill

Hi everyone, I'm writing a class that holds a matrix (of double values), represented as vector<vector<double>>; I want to implement the operator=, to re-fill my matrix with the details of a given sparse matrix. I'm writing the following code: RegMatrix& RegMatrix::operator=(const SparseMatrix rhs){ if(*this != rhs){ _matri...

Resizing glut window

I'm doing 2D drawing in a glut window, and I'm having trouble making the window resize properly. My glutDisplayFunc and glutReshapeFunc are below. As it is, the drawing disappears when the window is resized. If I delete the glClear() from displayFunc(), new pixels don't "initialize" and there are clipping problems. How do I fix this?...

Merging two images with PHP

I'm trying to merge two images together with PHP. For example... how would I go about placing image one on top of image two or merge, with basic PHP? I have tried something such as watermarking, but it doesn't seem to be working. Image One Image Two ...and have it turn into this? FINAL RESULT: ...