Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
381 views

Oracle Analytic Question

Given a function zipdistance(zipfrom,zipto) which calculates the distance (in miles) between two zip codes and the following tables: create table zips_required( zip varchar2(5) ); create table ...
2
votes
2answers
708 views

How to find the minimum radius circle that encloses all the given points?

Suppose I have some 1000 odd points on a plane. Then, what I think could be done is to discard the points that do not affect the radius of the circle in any way - the points through which the convex ...
2
votes
4answers
1k views

Overcome OS Imposed Windows Form Minimum Size Limit

In an application I am developing, I need to be able to make a windows form smaller than the minimum height limit imposed by the operating system (36 px in Vista). I have tried intercepting ...
1
vote
1answer
57 views

define container minimum size using java layouts

i am writing a stand alone app in java using a couple of JPanel with different layouts in order to arrange the user interface. now my problem is that when i take the upper side of the window (its a ...
1
vote
1answer
42 views

I want a JLabel with a new getMinimumSize()

I want getMinimumSize to return weight=0 to cheat GridBagLayout.ipadx I have tried: public class ImprovedLabel extends JLabel { @Override public Dimension getMinimumSize() { ...
1
vote
0answers
176 views

How to get and/or overwrite the minimum size of windows in Mac OSX

I want to resize any window on my machine, which I accomplish with AppleScript, using GUI Scripting. The script looks similar to the following: tell application "System Events" set appProcess to ...
1
vote
6answers
565 views

Options for read-only binary flat-file storage using Python

I have been tasked with setting up a flat-file SKU database for use on embedded devices with limited storage and processor speed. Basically the data I need to store consists of the following: SKU ...
0
votes
1answer
24 views

What is the iPhone Search Bar Height (minimum possible)?

Been trying to find the height of the iPhone Search Bar but all I found on google were pages talking about iphone tab bars, and also happened to have a (webpage, not iphone) search bar that says ...
0
votes
0answers
22 views

UIPopoverController border and arrow not redrawing with original content size height less than 45

In iOS 4.3 and earlier resizing a UIPopoverController from less than a height of 45 points to a height greater than 45 points causes the popover's border and arrow to stretch instead of redraw. If I ...
-1
votes
2answers
34 views

Automatically set minimum size of JPanel

I have a subclass of JPanel, and I want it to, as soon as its parent frame is pack()ed, to set its minimum size to its new preferred size. I've tried using a ComponentAdapter, but JPanels are by ...