Top "Size" questions

Size in computing can refer to various dimensions: size in bits, in bytes, in pixels, in memory, in disk space, etc.

When is Panel.Size updated after adding controls when Panel.AutoSize = true?

I'm creating a GUI in C# using WinForms. I'm trying to position programaticaly created panels one below the other. As …

c# winforms size autosize
Change the Height of an ExtJS 4 Tab

Context: I'm writing an ExtJS application to help volunteers manage a camp database. Containing emergency information, dietary requirements and cabin …

tabs size height extjs4 tabpanel
How to get byte size of multibyte string

How do I get the byte size of a multibyte-character string in Visual C? Is there a function or do …

c string character-encoding size multibyte
Does the space occupied by deleted rows get re-used?

I have read several times that after you delete a row in an InnoDB table in MySQL, its space is …

mysql database size innodb rows
Python "in" operator speed

Is the in operator's speed in python proportional to the length of the iterable? So, len(x) #10 if(a in …

python time size in-operator
What is pixel width and length for jspdf's default 'a4' format?

What is the size in pixels for jspdf's 'a4' format? I want to add an image to pdf so …

javascript size jspdf
Java UDP packet size

In Java a single char is 16 bit, 2 bytes. That means if I want to send an UDP packet to a …

java udp size packet
Change side of a jScrollPane & change size

I want to change the side of my JScrollPane from the right (default) to the left side. How do I …

java user-interface size jscrollpane
PL/SQL maximum size of VARRAY

I'm trying to figure out the possible upper bound of VARRAY in PL/SQL. We sure can define VARRAY type …

oracle plsql size database-administration varray
realloc: invalid next size, detected by glibc

My code: int args_size = 5; char** args; args = (char**) malloc(sizeof(char*) * args_size); // ... args = (char**) realloc(args, sizeof(char*) * (…

c size realloc dynamic-arrays