Questions tagged [shrink]
249 questions
0
votes
0 answers
width of website not shrinking on mobile devices correctly, meta not working
So Im building a website which looks totally fine on computer browsers, but when opened in mobile browsers especially in Safari on iPhone the width doesnt shrink as it supposed to and is just huge though and you cant even zoom out, even though I…

marteen
- 1
0
votes
0 answers
Cannot change Initial Size
I restored a db with a .bak of the production db, on the development environment. Then I truncated a few, big tables so the space used became the half, but the datafile size obviously is now the same. Usually I shrink the datafile and then set the…

maurice
- 1
0
votes
1 answer
android gradle shrinkresources no injars is generated in components.flags file
I added the shrink options to my gradle, while the following error always happens:
:app:shrinkDefaultConfigDebugMultiDexComponents FAILED
Error:Execution failed for task
:app:shrinkDefaultConfigDebugMultiDexComponents'.
java.io.IOException:…

zccneil
- 139
- 11
0
votes
2 answers
Shrink the database in SQL Server
I have a database which is almost full and we have some options to deal with this:
we can increase the db file size
shrink the database
Before I choose the first option, I want to know how can I check the database size and how much data is really…

bobtheguy
- 33
- 1
- 8
0
votes
1 answer
WPF ProgressBar not shrinking to fit content when IsIndeterminate = true
Ive got a simple StackPanel which contains a TextBlock and ProgressBar.
On startup, the width of the ProgressBar is perfect - it has sized itself to fit in its boundaries (stretched to '150' by it's sibling TextBlock).
However, when the TextBlock…

maxp
- 24,209
- 39
- 123
- 201
0
votes
2 answers
Azure VM shrink Volume C
I have created an Azure VM and has a C drive with 127GB. I think it's too much and want to shrink and create another drive "E". Will the new "E" drive remains if I delete the VM in future?

user1220497
- 311
- 2
- 4
- 15
0
votes
0 answers
Cordova ios Page Shrinking
I have page shrinking problem in cordova iOS platform. When clicking the input text field, it opens the keyboard.
I am facing the screen shrinking problem when clicking outside the already focused text field and didn't close the keyboard which is…

Senthil Murugan
- 65
- 1
- 5
0
votes
0 answers
Div doesn't shrink-wrap around resized image
I have a div on my page that should have some small divs inside it, with a line of text, images and another line of text, everything centered.
But by some weird reason, the div doesn't wrap around the text even if floated, it looks like it haves the…

Miguel Vieira
- 144
- 3
- 17
0
votes
4 answers
Why isn't realloc shrinking the array?
I have trouble reducing the size of dynamically created array. Here's what my main function looks like:
int main(void) {
// Intialize big array
int * a = (int *)malloc(10*sizeof(int));
assert(a);
// Fill it with squares
for (int…

vaultah
- 44,105
- 12
- 114
- 143
0
votes
2 answers
Changing a table row height
I'm doing an app that have a tiled UI. I have a problem because I'm using an table layout with 2 table rows inside of it, but, I need to shrink the first row a little bit but I've already tried using padding and margins (android:paddingBottom &…

Sebastian Ziegler
- 67
- 2
- 11
0
votes
1 answer
Shrinking Netty with Proguard
Could any one give me the exact .pro file of Proguard to shrink Netty (version 4 or 5)?
I have a jar file that uses Netty, I am using Proguard 4.11 to obfuscate and shrink my jar file with Netty into one small jar file. I am not using all of Netty…

bml13
- 1
- 1
0
votes
0 answers
Delphi IDE - MainForm shrinks when I click on any control
Delphi 2010, Windows 8.1 64 bit.
I am having an oddity occur. When I am in the IDE, I have my form displayed. Every time I click on a control in the form, the form's height and width shrinks. There is NOT empty space at the bottom of the form;…

user1009073
- 3,160
- 7
- 40
- 82
0
votes
1 answer
Shrink Text in PDF using Ghostscript
Is it possible to shrink the size of text for a PDF Document using Ghostscript?
I've recently posted a question on how to shrink a two page pdf to one page, its close but I think If I can shrink the font a bit it would be perfect. I haven't been…

dominoharvey
- 13
- 3
0
votes
1 answer
Shrink databases in case a database split
Due to a new architecture I have to split the current database in 2 databases both of them having 50% of the initial database (= 15GB).
1/ Is this a good idea to execute DBCC SHRINKDATABASE (0) for the 2 newly created databases? I'm asking this as…

user3104183
- 408
- 1
- 9
- 26
0
votes
2 answers
Delete some items from an array and shrink array in Java
I have an array like this:
double[] my_input_array = { 0, 1, 2, 3, 4, 5, 6, 7, 8 };
and some known positions which represent where to remove items from the array.
For example if positions are 3 and 7 I would like to get a my_output_array = { 0, 1,…

madx
- 6,723
- 4
- 55
- 59