Tagged Questions
Dynamic resizing usually refers to on-the-fly resizing by a web server. This feature reduces development time and webmaster overhead by eliminating a common pain point in web development.
5
votes
1answer
6k views
How to auto resize JFrame according to content
I have created a custom JPanel that displays images (lets call it MyPanel), I have added this to JFrame's contentPane.
I want JFrame to be resized automatically to fit the MyPanel when image changes.
...
3
votes
2answers
91 views
Custom DirectShow Source Filter - Dynamic Resolution Change
I've asked a very similar question before for a video renderer filter.
See here: Custom DirectShow Video Renderer Filter - Dynamic Resolution Change
But this time, I need a solution for a source ...
3
votes
4answers
291 views
std::string and its automatic memory resizing
I'm pretty new to C++, but I know you can't just use memory willy nilly like the std::string class seems to let you do. For instance:
std::string f = "asdf";
f += "fdsa";
How does the string class ...
3
votes
2answers
942 views
App Engine Cropping to a Specific Width and Height
I need to resize and crop an image to a specific width and height. I was able to construct a method that will create a square thumbnail, but I'm unsure on how to apply this, when the desired thumbnail ...
2
votes
5answers
9k views
fancybox iframe dimension
in the fancybox homepage (http://fancybox.net/home) there is an exemple that opens an iFrame dimensioned as the 75% of the screen.
I cant get it by modifing the width and height properties on the .js ...
2
votes
2answers
952 views
UINavigationController autoresizing views behavior
I've read in Apple's documentation about UINavigationController's resizing behavior and it hasn't been much of a problem until now.
I have the following code to set up my UINavigationController's ...
1
vote
1answer
154 views
Immediate vs. Incremental Copying in Dynamic Hash Table Resize
What are the advantages and disadvantages of each? If I'm implementing a hash table where fast lookup time is crucial, it seems like I should use immediate, because that would occur only on insertions ...
1
vote
0answers
129 views
Setting width of a panel based on the width of an element within it in WPF
I have a list box item that I wish to dynamically resize. However I don't want it to resize to the width of the largest element, but to the width of a specific element.
This comes from the ...
1
vote
1answer
520 views
Dynamic sizing of SSRS Report
I have a report with 12 Tablixes on it. The user can pick and choose which one of these Tables and their associated data shows when the Report is generated. However, when chosing a subset of the 12 ...
0
votes
2answers
376 views
Dynamic horizontal sizing of jscrollpane container div
I have a centered liquid layout that has a help/intro section at the top of each page. I use jQuery to hide/re-show the help content based on the user's needs. Under this, I have the rest of the ...
0
votes
1answer
182 views
What exactly does 'dynamic text resize with javascript' mean
I just finished and turned in a homework assignment where the goal was to 'dynamically resize text with JavaScript styles'. We had a few paragraphs with a certain class on them, and those were the ...
0
votes
1answer
162 views
uiview resizing and manipulation problem for iphone 4G
I have written a code that I use for cropping purpose. The scenario is like, It has 4 uiviews
1) Top
2) Left
3) Right
4) Bottom
Each uiview is resized according to the desired change and the main ...
0
votes
1answer
91 views
CSS: How do I arrange 3 elements into columns with the middle element filling in between them?
I have 3 elements I want to arrange into columns. I want the left and right elements to stay fixed widths and align to their respective edges of the page, but the middle element I need to fill in the ...
0
votes
1answer
134 views
Question on dynamically sizing a button with textField
Hi Stackers! My question today is dealing with a dynamically generated button with a textField.
I have the button copy in XML and I need to add a buffer of 10 pixels to either side of the textField. ...
0
votes
1answer
793 views
How to get an Applet in a table-row to size dynamically
I need to insert an applet into a table-row and get that table-row's height to dynamically resize according to the browser's window size. If I put fixed values for width & height in the td-tag, it ...