Size in computing can refer to various dimensions: size in bits, in bytes, in pixels, in memory, in disk space, etc
0
votes
2answers
48 views
c++ - length of array inside class function
i know there are several threads asking a similar question but i couldn't find a solution and i'm somewhat new to c++.
I want to calculate the length of a DWORD array. So it's just an unsigned long.
...
0
votes
1answer
21 views
How do I resize an image while keeping its dimensions using jQuery?
I have this script that enlarges an image thumbnail on hover.
The problem is that some images are different heights so the script sometimes stretches them out of proportion. Most images are 100x100, ...
0
votes
0answers
5 views
Photoshop CS6 Size of Objects
I'm using PS CS6 and have almost no experiences with Photoshop. I just need to get some sizes in px to create HTML.
Maybe a trivial question, but couldn't find any answer on google and stackoverflow.
...
0
votes
1answer
10 views
Objective C- Whats the normal size of
I wanna make my ISomething app as native as possible and have no idea whats a good size for the Elements. Is there any normal/default/standard size for UIButtons or UILabels i can use? Are there any ...
0
votes
2answers
43 views
How to get the size of a site collection through C#?
I have limited the size of the content database upto 200 GB. I have used the following code to get the size of a content database.
SPWebApplication elevatedWebApp = spWeb.Site.WebApplication;
...
0
votes
0answers
9 views
Javascript XMLHttpRequest doesn't read all text file content
I've been trying to download a text file using the code below:
var req = new XMLHttpRequest();
req.open('GET', window.location.href.replace('index.html', '') + 'data/data.txt', ...
0
votes
0answers
11 views
How do I set the RowHeight in a DataGridView to the height of one line of text?
I don't want automatic resizing I just want the default to depend on the font size.
The font size is influenced by the DPI setting for the display so using a fixed value doesn't work. What is the ...
0
votes
1answer
7 views
Get UIView size in init method
When I call self.frame.size.height in the init method of my UIView I get 0 as result.
UIView:
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
...
0
votes
0answers
16 views
Scales doesn't work on splom, lattice
I tried to change the size of text in splom, lattice. I searched online for over an hour, read the help file, but something is still wrong. I would really appreciate if someone gives me a simple ...
1
vote
3answers
52 views
Specifying number of bits for a datatype in C
Is it possible to specify a datatype such as int or long to be able to store larger number of bits than it usually supports?
Example int supports 32 bits and long supports 64 bits. What if I want a ...
0
votes
0answers
16 views
uiwebview stuck with portrait size in landscape mode
I have a simple html page with no css formatting being displayed in a uiwebview. My uiwebview in landscape mode is rotated correctly, but the size is limited to what appears to be portrait size. The ...
0
votes
1answer
33 views
Size of Qt containers: is QMap much larger than Qlist?
I am developing a software which maps information in 3D space. I use a container to hold this information. The container which I use is
QList< QList< QMap<float, QList<quint16> > ...
1
vote
0answers
30 views
How to calculate Windows Forms DataGrid content's size?
I've got a datagrid filled with fixed data (non-database). There is no need to scroll the data itself and I want to set the size of the grid, such that all the data is visible (and no scrollbars are ...
0
votes
1answer
21 views
Position an object relative to its container?
I'm making a server listing website and for each server I'd like to display an image and some information that will be shown when the pictured is "hovered" with the mouse.
When the server name is too ...
-3
votes
0answers
9 views
after restarting windows 2012 server disk size decreased 10 GB [closed]
I have restarted my windows 2012 server and after that disk size decreased 10 GB, now it is 1 GB.
How can I find what caused this?
0
votes
1answer
24 views
Set row height using excellibrary
I'm using excellibrary and I want to set a row's height or column's width. Sounds very simple, but I can't find a solution. How can I do that?
0
votes
1answer
27 views
ImageView be a square with dynamic width?
I have a GridView with ImageViews inside. I have 3 of them for each row. I can set correctly the width with WRAP_CONTENT and scaleType = CENTER_CROP, but I don't know how to set the ImageView's size ...
-1
votes
1answer
22 views
Change the Android screen size [closed]
I have a 7" android device (phisically it have 7 inches), but it thinks it have a 10" inches screen size. Because of this, all apps interfaces look small.
I've made a LOT of research on the internet ...
3
votes
0answers
33 views
set jquery ThickBox size to auto
I use JQuery ThickBox 3.1 to show my Iframed Content as popup window .
<a href="popUp.aspx?id=<%#Eval("id")%>&TB_iframe=true&height=600&width=800"
...
0
votes
1answer
54 views
Is there a way to determine the size of an array based on t
I wrote a function that calculates outer differences between an array and this array itself, and only saves those results that are positive (see code below)
void outer_pos(double *x, int *n, double ...
0
votes
1answer
18 views
Adjusting the JButton size and putting it as a small button in the middle of a JFrame
JFrame menu;
private void menuFrame() {
menu = new JFrame();
menu.setSize(600, 600);
menu.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
menu.setResizable(false);
...
0
votes
1answer
16 views
Error Matlab code
I code about subband coding, and delay signal
My code:
N = 18; %Setting the filter length
[h0,h1,g0,g1] = firpr2chfb(N-1,0.4); % MATLAB function for the analysis/synthesis
num=20000;
...
0
votes
5answers
67 views
Get DIV width and height in javascript
I'm trying to get the div width and height as the user changes it and submit that number to another page. I can't seem to figure out how to get the width and height though.
<script>
...
0
votes
2answers
44 views
Change image size in ASP, C# and CSS
Why when I place the mouse on top of the image doesn't change its size?
I have this on a ASP webpage:
<asp:Image ID="ProdImage" CssClass="ImgDetail" runat="server" />
The Page_Load() loads ...
0
votes
1answer
25 views
UPLOAD_ERR_INI_SIZE error but post_max_size and upload_max_filesize values look correct
I am trying to upload a file which is 17569997 bytes (~16.7MB).
When performing error checking in my script, I inspect $_FILES['file']['error'] which is set to 1 (UPLOAD_ERR_INI_SIZE - The uploaded ...
1
vote
0answers
26 views
Error with computed size of relative-size HTML elements in javascript
My window object has a width of 1361px.
A container div has its width set to 90%, that theorically makes 1224.9px.
However, the computed size of it ( $("#mycontainer").width() ) returns 1225px. FYI, ...
-1
votes
3answers
32 views
Error: Subscript indices must either be real positive integers or logicals
I have one 194-by-1 matrix. When I try to find its size, I get this message:
Subscript indices must either be real positive integers or logicals.
All values are positive and logical, what is the ...
0
votes
1answer
53 views
Text scale up to fit a TextView and an EditText
I want to fit the text size of a TextView and an EditText to to match their bounds.
I searched a bit and found the code below. So I created a new class with the code below:
package com.example.test;
...
1
vote
1answer
12 views
Buttons for text area that change the font size however It only works of text selected by the user (like Microsoft office's font size selections)
This is the code I have for the font size buttons however I do need it to work on selected text only by the user and not change the font size of all letters in the text area (like Microsoft's font ...
0
votes
3answers
95 views
Forcing Ada to use minimum spec size for enumerated types with gnat 4.4
I have an enumerated type that needs to be 4 bits but when I declare a variable of that type the compiler assigns that variable 8 bits.
Below is a simplified version of the code.
subtype ...
7
votes
1answer
49 views
Reduce size of debug APK in IntelliJ
I am co-working on medium sized Android project with 9 Android libraries and 10 jar libs. I develop in IntelliJ and my collaborant works in Eclipse. In Eclipse the size of debug APK is about 2.5 MB, ...
0
votes
1answer
38 views
Android application with more than 100 MB preloaded sqlite database
we are developing an android application for a survey. During the survey the enumerators check people against a preloaded sqlite database. Size of the preloaded database is likey to be more than 100 ...
2
votes
1answer
38 views
Difference in Executable Size in C89 and C99 standards
I made an Executable using GCC
$ gcc Q1.c -save-temps -std=c89 -o Q1
$ size Q1
text data bss dec hex filename
1509 264 8 1781 6f5 Q1
and then i do this
$ gcc ...
0
votes
0answers
34 views
What size i must make and apple touch icon when no size specified
I have read that there are many apple touch icon size.
just like that :
<link rel="apple-touch-icon" href="apple-touch-icon-iphone.png" />
<link rel="apple-touch-icon" sizes="72x72" ...
-2
votes
4answers
54 views
Java: Using size() to determine amount of different arrayList entry types [closed]
Is it possible to find the different types of entries within an arraylist using the size() method? For instance I have an arraylist with 2 different types (personal entries, business entries).
I have ...
1
vote
2answers
48 views
WinForms resize controls along with form resize
I have a few controls (group boxes, tables, gridview, etc) in my c# WinForms application and I would like to scale them based on screen width/height.
For example the screen starts at let's say ...
0
votes
1answer
22 views
FLOT: Multiple YAxis with different tick size
Just want to find out if anyone have encountered this problem before.
Basically I am currently using Flot version 0.8. I am trying to plot a chart with multiple yaxis against datetime in xaxis.
The ...
0
votes
1answer
24 views
Setting size of generic array in java?
I have a private member which is an array of type generics and in my constructor I have a parameter that is to set the size of this array. How could I set my private array to the size specified by the ...
0
votes
1answer
42 views
Predict cache line length using time measure
Hi it's my first post here so Hi everyone.
I have problem with predict cache line size in GNU AS. I wrote program in C which calls a function written in assembly.
here is this function
.section ...
0
votes
2answers
49 views
strlen of a char array is greater than its size. How to avoid?
I defined an array:
char arr[1480];
Now, from a file, I read exactly 1480 chars and put into arr (by doing arr[i]=c).
I know 1480 chars because I use a while loop to read one char ar a time ...
0
votes
1answer
31 views
Import database even if it exceeds the limit size
I've noticed that mysql accepts only 2,048kb size of database but mine is 3.45mb. Does anyone know how to import the database? I'm only using phpmyadmin. Thank you so much! :)
0
votes
0answers
33 views
Image scaling up instead of down
I have a Image that I need to scale down until it is 64 x 64. In a class I use this code for scaling the image width and height and adjusting it's x and y position.
crate = new ...
0
votes
0answers
10 views
Determine mysql database size without using information_schema database
This is my query to find database size of MySQL database using information_schema database
Query
SELECT table_schema "Data Base Name", SUM( data_length + index_length) / 1024 / 1024
"Data Base ...
0
votes
3answers
39 views
HTML Table Sizing Issues
What I have is a table that I would like to be placed in the center of the page with two banner ads on both sides of the table, the left and right ads coming as close to the edges of the page as ...
0
votes
2answers
40 views
Java - Swing - JFrame is sometimes bigger than preffered size
I am writing an a snake game, but there's a small problem. SOMETIMES there's a little gap between the panel and the frame. I really have no idea what could be the problem as it appears so irregularly.
...
0
votes
0answers
27 views
iOS change modal view size using storyboard
When not using storyboad,this answer works well for me
but if I use storyboard,it can not change a view's size in storyboard,and there is no codes which I can set modal view's frame,how can I change ...
0
votes
3answers
34 views
check size of memory before exporting it to .php file
I wrote a PHP script that index the contents of my site and stores it in multi-dimensional arrays. Then I export what is in the memory, that array, to a .php file to include and access later.
How can ...
0
votes
1answer
28 views
How to calculate text location x with processing.org?
I am having a hard time understanding how to calculate the size of a word in processing when there are different font sizes.
All I am trying to do is to put suffix right after the word "Metric".
...
3
votes
1answer
51 views
Set the Textview size respective to the device screen size
I am searching for a long but i was not successful . I have came across this issue many times but somehow i managed with giving fixed sizes .
But is there any method , So that the TextView size ...
0
votes
0answers
30 views
integrity of list in elasticsearch messed up while paging
I am using version 0.90.0 of elastic-search and stumbled upon a very strange problem:
After I initially filled my index with documents, using sort and from/size works properly. But when I overwrite a ...







