2
votes
6answers
230 views
C pointers : pointing to an array of fixed size
This question goes out to the C gurus out there:
In C, it is possible to declare a pointer as follows:
char (* p)[10];
.. which basically states that this pointer points to an array of 10 chars. …
1
vote
4answers
27 views
how does one calculate the minimum _client_ size of a .net windows form?
Hi everyone
I am trying to programmatically position certain controls within a form, based on the difference between the forms minimum size and its client size - this unfortunately produces different …
1
vote
2answers
47 views
how to get size of DIV at 100% zoom?
If a web page is zoomed out/in in any modern browser, then how I can find size of a DIV element at 100% zoom?
EDIT:: I asked another similar question here, which was unanswered.
4
votes
9answers
123 views
What can I do to make jar / classes smaller?
I'm developing a Java Applet, and reducing the size of the binary code will make the applet open faster and will improve the user experience.
Is there anything I can do to reduce the size of classes …
1
vote
2answers
49 views
Making a div smaller than its contents
I'm trying to show a div on a webpage, with mostly text. I would like to know if I can make it smaller so that not all the contents are able to be seen. (Javascript would make it larger later on.)
0
votes
2answers
73 views
How many characters in varchar(max)
How many characters can a SQL Server 2008 database field contain when the data type is VARCHAR(MAX)?
Thanks guys, helped me out a lot :)
1
vote
3answers
97 views
How to get the size of an image in bytes with Delphi?
Hi dudes, my app has 3 controls: TThumbnailList (image viewer from TMS components), TImage, and TLabel. I wish that when I drag an image from TThumbnailList to TImage, and drop it, the TLabel object …
1
vote
4answers
62 views
Dynamicaly Chaning the <textarea > size,style
How can i change the field size diynamicaly?
I have a select field and there are 3 options with different values.
So if the user selects one of them in the you see the values.
But how can i …
0
votes
2answers
57 views
How to estimate size of a Jpeg file before saving it with a certain quality factor?
I'v got a bitmap 24bits, I am writing application in c++, MFC,
I am using libjpeg for encoding the bitmap into jpeg file 24bits.
When this bitmap's width is M, and height is N.
How to estimate jpeg …
0
votes
2answers
30 views
SharePoint - Approaching Website Storage Limit Email
Hi all,
How can i go about changing the distribution list as well as the email text for the email that goes out to site collection admin when a site collection approaches it's size limit?
Thanks for …
0
votes
3answers
49 views
PVRTC compression increasing the file sizes of PNG
Hi,
For iPhone game development, I switched from PNG format to PVRTC format for the sake of performance. But PVRTC compression is creating files that are much bigger than the PNG files.. So a PNG of …
0
votes
4answers
83 views
Size of reference of an class in JAVA
What is the size of reference of a class in Java? Is it constant for a particular JVM and OS irrespective of the class for which the reference is made.
Class A
Class B
Class C
A a;
B b;
C c;
Is …
14
votes
7answers
535 views
C programming : How does free know how much to free?
In C programming, you can pass any kind of pointer you like as an argument to free, how does it know the size of the allocated memory to free? Whenever I pass a pointer to some function, I have to …
1
vote
2answers
46 views
Different lucene search results using different search space size.
I have an application that uses lucene for searching. The search space are in the thousands. Searching against these thousands, I get only a few results, around 20 (which is ok and expected).
…
2
votes
1answer
51 views
Determine total size of SVN directory/trunk
Is there a way to count/calculate the total size of a svn directory if you were to checkout a revision?
I have limited internet downloads so I need to know how big something is before I go and …
