0
votes
2answers
49 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
94 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, …
1
vote
4answers
53 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 …
0
votes
2answers
53 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.
H …
0
votes
2answers
27 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 siz …
1
vote
2answers
42 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 …
0
votes
0answers
26 views
C# datagrid: event handler for changing column width
Hi,
I'm programming a windows mobile app in C# and I need to resize the columns of a datagrid when columns from another datagrid are resized.
Is this possible ?
Thanks.
2
votes
1answer
43 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 be …
0
votes
4answers
76 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
…
1
vote
2answers
35 views
Qt Increase QTabWidget’s QTabBar size
I need to make the tabs that I have oriented at the bottom of my QTabWidget larger. We'll be using a touch-screen, so the default sizes are a little too small.
I see no easy way t …
0
votes
1answer
46 views
Can i reduce the font size of iphone tableview header
Hi All,
I need to reduce the font size of the table view header. My string value is a little bit longer and it doesnot fit in to the header. so planning to reduce the size. Any on …
2
votes
5answers
145 views
can size of array be determined at run time in c?
As I know, an array needs to have a specific size before compiling time in c.
I wonder why this code still works?
int s;
printf("enter the array size: ");
scanf("%d",&s);
i …
2
votes
7answers
181 views
size of a datatype in c
Is size of a datatype hardware architecture dependent or compiler dependent?
I want to know what factors really influence in determining the size of a datatype?
0
votes
2answers
46 views
What is max size of ajax response data?
I send request from asp.net page and then wait for response, calling GetCommand via SetInterval method:
function GetCommand(id, sid) {
getCommandResponse = $.ajax({
type: " …
0
votes
5answers
125 views
How to calculate the memory size of a program?
Lets say I have a c program where I use only stack variables, no dynamic variables (malloc, ...)
Is it possible to calculate how much memory my program will take during run time? …
