resize

Skinned C# form with huge black flicker while resizing!

Hi, I'm trying to create some skinned forms (just the border and caption) with a different approach than you usually see but I'm having some issues with form flickering while I resize the form. I don't know how else to explain the problem, so here's a video I created to demonstrate the problem: http://www.screencast.com/t/AIqK9Szmz Als...

resize a vector down.. c++

I have a vector with 1000 "nodes" if(count + 1 > m_listItems.capacity()) m_listItems.reserve(count + 100); The problem is I also clear it out when I'm about to refill it. m_listItems.clear(); The capacity doesn't change. I've used the resize(1); but that doesn't seem to alter the capacity. So how does one change the reserv...

iframe shifts 1 pixel to left on some browser sizes

i have code like, sorry i dont have the exact code now. but its valid. <iframe src="..." borderframe="0" scrolling="no" width=728px" height="90px"></iframe> the target is a html file that contains code for a banner. everything displays well. but when i resize browser or go to maximize. the content is shiftet to the left by 1 pixel. s...

How do I remove minimize and maximize from a resizable window in WPF?

WPF doesn't provide the ability to have a window that allows resize but doesn't have maximize or minimize buttons. I'd like to able to make such a window so I can have resizable dialog boxes. I'm aware the solution will mean using pinvoke but I'm not sure what to call and how. A search of pinvoke.net didn't turn up any thing that jumped...

HTML table to overlap parent div dynamically

How can i make the inner table to overlap the parent div with 5 px while resizing? my current solution: <div id="crop"> <table style="width:105%; height:105%;"> //table cells </table> </div> problem is that it gets smaller when resizing... how can I make it constantly overlap with 5px; ...

adding alpha values to bilinear resizing algorithm

So I'm trying to take a bilinear interpolation algorithm for resizing images and add in alpha values as well. I'm using Actionscript 3 to do this, but I don't really think the language is relevant. The code I have below actually works really well, but edges around "erased" regions seem to get darker. Is there an easy way for it to not i...

Firefox overflow:scroll resize issue.

In Firefox...... <div id="container" style="overflow:scroll; width:400px; height:500px"> <div id="content" style="height:500px; width:800px"/> </div> The "container" DIV should have scroll bars since the div with id "content" is wider than it. If, using JavaScript (see below), I reset the size of the "content" div to "200px", I...

How to resize a java applet when the browser is resized?

I have a java applet that is embedded in html using the object-comment-embed method. I would like to resize the applet whenever the browser window is resized. I have found solutions around the internet, but they all work based on the deprecated applet tag. Also, when trying a setSize() call on my embed element in FireBug, it will resize...

What is the best image downscaling algorithm (quality-wise)?

I want to find out which algorithm is the best that can be used for downsizing a raster picture. With best I mean the one that gives the nicest-looking results. I know of bicubic, but is there something better yet? For example, I've heard from some people that Adobe Lightroom has some kind of propieritary algorithm which produces better ...

How Can I Only Allow Uniform Resizing in a WPF Window?

I don't want my window to be resized either "only horizontally" or "only vertically." Is there a property I can set on my window that can enforce this, or is there a nifty code-behind trick I can use? ...

Firefox blurs an image when scaled through css or inline style.

Hi When I visually scale an image, firefox 3 blurs it. Firefox 2 and other browsers don't, which is the behavior I expect. This is especially lame for creating a webbased game using png or gif sprites. For example, when showing a 100x100 image in firefox 3 like this: <img src="sprite.gif" width="200" /> or <img src="sprite.gif" sty...

Make <div> resizeable

Hi! Is there a way to make a <div> container resizeable with drag'n'drop? So that the user can change the size of it using drag'n'drop? Any help would really be appreciated! ...

SimpleModel Resizing the Container

Dear All, I have Used SImple Model, Now Problem Is The Resizing of Modal, I have Confirm Dialog One is Basically Small size after pressing Yes , The Second One is my.php contains large Data,I am Using the concept of Appending Already existing model ,Will any body tell how to Resize the Content and My JS Snippet Has ...

C# - Array that can be resized fast

I'm looking for a kind of array data-type that can easily have items added, without a performance hit. System.Array - Redim Preserve copies entire RAM from old to new, as slow as amount of existing elements System.Collections.ArrayList - good enough? System.Collections.IList - good enough? ...

How can I modify this image manipulation function done in codeigniter to be more efficient

I think this function isn't as efficient as it should be. I'd appreciate some suggestions on how I can structure it to be faster and take less memory. This is what the code does: checks to see if the image was uploaded add details about it (tags, name, details) to the database if the variable $orientation was set, rotate the image if...

Create Window larger than desktop (display resolution)

I need to resize a window larger than screen resolution or size of desktop, programmatically & preferably also manually. Since MS-Windows XP/Vista disallows a window size larger than screen, does anybody have any ideas to work around this limitation? I trying to make pan effect on a laptop to give me more space to work. An older laptop...

Creating a textarea with auto-resize

There was another thread about this, which I've tried. But there is one problem: the textarea doesn't shrink if you delete the content. I can't find any way to shrink it to the correct size - the clientHeight value comes back as the full size of the textarea, not its contents. The code from that page is below. I'd appreciate any help or...

disabling frame resize in Firefox

I have the following frameset: <frameset rows="625,*" cols="*" framespacing="0" frameborder="0" border="0" noresize> <frame marginheight="0px" src="music-NEW.php" name="mainFrame" scrolling="NO" frameborder="0" noresize> <frame marginheight="0px" src="musicplayer.php" name="bottomFrame" scrolling="NO" frameborder="0" nore...

Dynamic backgroundimages PHP GD

Hi Stackers, Problem Basicly, it's impossible to use a full-size photograph with the background-image in a proper way imo. Different resolutions, wide-screen etc etc. What im looking for is a JS/PHP GD solution for this problem. Technique From what i hear, it would be as follows. Javascript looks up available screensize (browser window...

PictureBox resize & paint problem

I want to show some graphics in a Winform app, it will be a stock's chart drawing tool. I think (but I am not sure...) I have to use a PictureBox, and using the System.Drawing.Graphics class' drawing primitives to draw the chart. I have started coding it, now it works more-or-less, but I have a problem with the resizing feature, as follo...