Tagged Questions

0
votes
1answer
29 views

CSS column sizing

Hi, I have a page which can rezise depending on the content. What I need is a way for the side bars to increase / decrease along with the body, but never to be less than 100% …
1
vote
0answers
21 views

Silverlight Grid content, how to stretch it?

I am frustrated with my Grid (the root control) being the container of other controls (Grids, StackPanels, Borders...). What I would like to see is the content within my root cont …
0
votes
3answers
118 views

Maximum number of rows in a sqlite table

Give an simple sqlite3 table (create table data (key PRIMARY KEY,value)) with key size of 256 bytes and value size of 4096 bytes, what is the limit (ignoring disk space limits) on …
5
votes
4answers
340 views

Estimating database size

I was wondering what you do when developing a new application in terms of estimating database size. E.g. I am planning to launch a website, and I am having a hard time estimating …
1
vote
5answers
467 views

How to fix the size of a Java heap

Hello, everyone I know Java VM has "-XMx" and "-XMs" for setting the size of the heap. It also has a feature called "ergonomics", that can intelligently adjust the size of the hea …
4
votes
4answers
170 views

Is there a data sizer tool available for SQL Server 2005?

I have to estimate the data size of database when populated with forecast values for each table. It should at least include size to be used for data and indexes. There used to be …
1
vote
2answers
306 views

JTextArea - very small size with long text

I'm using a JTextArea to display a long text JTextArea _definition = new JTextArea(5, 50); with word-wrap _definition.setLineWrap(true); _definition.setWrapStyleWord(true); e …
0
votes
2answers
457 views

Hardware Sizing - Thumb Rules

In many Enterprise System architectures, it becomes imperative to size the hardware according to concurrency & workload requirements. Mostly product vendors will provide their …
0
votes
1answer
73 views

Hardware sizing

Basically I am looking for the guidelines for How to approach on hard ware sizing for a given requirements.what are the parameters need to consider to arrive at sizing decisons. It …
0
votes
1answer
153 views

When should sizing grip (windows Forms) be used?

Should it be used for all sizable forms, or only when it is not easy to guess that a form is sizable? Is there a GUI convention to use it? Any link to a documentation would be app …