Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
8answers
763 views

Is it wise to use a Fluid Layout?

Google Labs Browser Size I've always preferred fixed-width layouts over fluid-width layouts, one of the main reasons is that I'm able to better understand how the whole picture will be without ...
10
votes
3answers
538 views

What are the implications of using unsafe code

Aside from the fact that the code itself can access memory directly. What are the other implications of using the "/unsafe" compiler flag and the "fixed" keyword? Are there any knock on effects ...
8
votes
4answers
3k views

Simulate position:fixed in jQuery

I have a header that is larger than the width of the page so that I can't use position:fixed to set him on top of the page, because I absolutely need to be able to scroll horizontally. I don't think ...
7
votes
2answers
3k views

How to resolve position:fixed for a bottom toolbar on iOS (iPhone/iPad)

I have a bar that is fixed to the bottom of every page on my website by using position:fixed. The problem is that on devices like iPhone or iPad this property is not respected. I tried to use ...
6
votes
3answers
237 views

fixed statement in C# and managed pointer in IL code

In unsafe code in C# I assigned pointer to the managed variable of array type: int[] array = new int[3]; ... fixed (int* ptr = array) { //some code } Then I looked at corresponding part of the ...
6
votes
5answers
506 views

Java fixed memory map

Is there a simple, efficient Map implementation that allows a limit on the memory to be used by the map. My use case is that I want to allocate dynamically most of the memory available at the time of ...
6
votes
7answers
5k views

C# Unsafe/Fixed Code

Can someone give an example of a good time to actually use "unsafe" and "fixed" in C# code? I've played with it before, but never actually found a good use for it. Consider this code... fixed ...
5
votes
8answers
103 views

How to implement a fixed size “list” in Java?

Since the Java core library doesn't have such a collection, would an array be the best option, especially if one doesn't want to rely on third-party libraries?
5
votes
1answer
83 views

Advanced jQuery “Sticky Bottom” and also Scrolling Sidebar Issue

this is my first post so please bear with me a bit. Having searched everywhere for a solution to this problem, and attempting to use a few plugins like jQuery Way-points, to no degree of success, I ...
5
votes
2answers
120 views

C# unsafe code fixed pointer passed as parameter

I came across the following code on msdn: unsafe static void SquarePtrParam (int* p) { *p *= *p; } unsafe static void Main() { Point ...
5
votes
2answers
305 views

Fixed size buffer cannot be directly used from “this” object

I am used a structure to represent pure data. One of the fields is a fixed-size buffer, as shown below. [StructLayout(LayoutKind.Sequential, Pack=2)] unsafe struct ImageDosHeader { ... ...
5
votes
1answer
381 views

Why is a fixed size buffers (arrays) must be unsafe?

Let's say I want to have a value type of 7 bytes (or 3 or 777). I can define it like that: public struct Buffer71 { public byte b0; public byte b1; public byte b2; public byte b3; ...
4
votes
1answer
102 views

Fixed header gridview with sorting functionality

I've been trying to implement a gridview that has a fixed header when you scroll, but also allows for sorting when you click header columns. After searching for a while, I found a great solution ...
4
votes
4answers
72 views

Fixed pointer statement?

There's some code I'm reading and part of it is: public static unsafe byte[] GetBytes(uint value, bool BigEndian) { byte[] buff = new byte[4]; fixed (byte* pbyte = ...
4
votes
1answer
95 views

What is the overhead of C# fixed statement on a managed unsafe struct containing fixed arrays?

I've been trying to determine what the true cost of using the fixed statement within C# for managed unsafe structs that contain fixed arrays. Please note I am not referring to unmanaged structs. ...
4
votes
3answers
164 views

Fixing an array of array in C# (unsafe code)

I'm trying to come up with a solution as to how I can pass an array of arrays from C# into a native function. I already have a delegate to the function (Marshal.GetDelegateForFunctionPointer), but now ...
4
votes
1answer
110 views

32-bit fixed point overflow

I'm doing some 'early computing' on a 32-bit Windows PC, and looking at the limits. Now, 2**32 is 4,294,967,296, and I find that 4294967290 + 5 is perfectly OK, and 4294967290 + 6 quite ...
4
votes
2answers
307 views

fixed point processing: what is the difference between uint16_t and uint_fast16_t?

I have a 16 bit fixed point processor and I want to do fixed point processing with it. I'm looking for the correct datatype to use for unsigned 16 bit ints.. My question is: what is the difference ...
4
votes
2answers
3k views

How do I get a fixed position div to scroll horizontally with the content? Using jQuery

I have a div.scroll_fixed with the following CSS .scroll_fixed { position:absolute top:210px } .scroll_fixed.fixed { position:fixed; top:0; } I'm using the following jQuery code ...
4
votes
2answers
5k views

C#:How can I fixed a form size in win application and not to let user changes its size?

C#:How can I fix a form size in win application and not to let user changes its size?
3
votes
1answer
74 views

How can I set fixed position Background image in jquery mobile for iPhone app using Phonegap

I am doing a iPhone app using Phonegap & also using jquery mobile. I want to set background image for data-role=page div. In this height of page is equal to screen & hence background is set to ...
3
votes
1answer
140 views

Print header/footer on all pages (Print Mode)

<div id="header">header</div> <div id="content"> content spanning several pages... </div> <div id="footer">Footer - Fixed at the bottom of each page</div> I ...
3
votes
0answers
221 views

Phonon's VideoWidget show wrong colors on a QGLWidget (Qt, Python)

I have a pet project that contain a videoplayer with subtitle displaying feature. Until now I working on the other parts of my project, but now I have to implement the subtitle rendering on the best ...
3
votes
0answers
367 views

mobile issues. pinch & zoom only certain region of the page (sencha vs jqtouch vs jquery mobile)

I am making a small SVG widget aimed at iphones with a fixed footer. The problem is I want to use native pinch & zoom that only affects everything bar this fixed footer. However I cant use ...
3
votes
8answers
148 views

fixed length array data structure which allows quick reuse of arbitrary elements? C++

I am relatively new to c++ and am trying to choose the most appropriate data structure for a specific problem but am finding it difficult to find answers. I wish to create a small (1000 elems max) ...
3
votes
4answers
680 views

CSS - Fixed Position but Relative to Container

I am trying to fix a DIV so that it is always parked at the top of the screen using: position:fixed; top:0px; right:0px; However, the DIV is inside a container that is centered. When I use ...
3
votes
4answers
159 views

Odd bit shifting results in C#

Given that i have a uint value of 2402914, and i would like to grab the leftmost 17 bits, where is the fault in my logic by doing this code: int testop = 0; byte[] myArray = ...
3
votes
1answer
206 views

CSS div fixed positioning

I have a div that contains a smaller div with some text. The container div has a webkit transition that moves it off the screen. I want the smaller div to move with it, until it gets to the edge of ...
3
votes
2answers
353 views

Centering a fixed element, but scroll it horizontally

Having some issues getting this to work. PLEEEEEEASE help. I would like an element fixed to the top of the viewport, when the user scrolls down the page it remains at the top of the viewport... easy. ...
3
votes
3answers
283 views

Fixed statement with jagged array

I have jagged array which I need to pass to external method. [DllImport(...)] private static extern int NativeMethod(IntPtr[] ptrArray); ... fixed (ulong* ptr = array[0]) { for (int i = 0; i ...
3
votes
2answers
205 views

Does “fixed” really guarantee anything when passing pointers (ie int[]) to DLLs?

I tried searching for this but haven't found anything, however when passing an int[] into a native DLL function as a pointer, isn't there still the danger that the DLL could maintain a reference to ...
3
votes
4answers
3k views

IE 6 vs. position:fixed

position:fixed that doesn't work for Internet explorer 6. I can't really understand the fixes found on google. I need it to work in IE6, IE7, IE8 & FireFox 3.0. <!DOCTYPE html PUBLIC ...
3
votes
1answer
292 views

What is the difference between Fixed and Unsafe

Why are there 2 different ways lock memory in place in .NET? What is the difference between them?
2
votes
3answers
70 views

Creating a dynamic sized array of fixed sized int arrays in C++

For some reason this is giving me more trouble than i thought... int *myArray[3]; myArray = new int[mySize]; does not work... I've used a typedef before in a similar manner and it worked ...
2
votes
5answers
83 views

How to keep List index fixed in Java

I want to keep the indices of the items in a Java List fixed. Example code: import java.util.ArrayList; public class Test { public static void main(String[] args) { ...
2
votes
1answer
301 views

Position:fixed in iOS5 Moves when input is focused

I have a div at the top of my mobile application that is position:fixed so it will stay on the top of the browser (it scrolls away in ios 4 and lower which is fine). When an input is focused and ...
2
votes
2answers
128 views

CSS Fixed-position Nav that slides away at page bottom

I'm working on my website, http://www.perezfox.com, which features a fixed-position navigation menu. I'm happy with how this operates, but there is a problem with vertically-challenged browser ...
2
votes
1answer
74 views

css fixed elements issue on “hand holding-page” effect

I think images are better than words: I want to build a page with a fake effect hand "holding" my webpage.So while the page scrolls the hand stay on the bottom-left corner of the browser. I think a ...
2
votes
3answers
119 views

Horizontally fix element

Using position:fixed fixes an element both vertically and horizontally, but I want my element only to remain horizontally fixed. That is, I want it to scroll vertically with the rest of the page. Is ...
2
votes
2answers
279 views

CSS background-position fixed to parent

my question is a bit tricky and I'm not really sure if it is possible, but I think I have a memory of doing it before or seeing it somewhere. So, I am making a horisontal menu. I have a div block of ...
2
votes
2answers
162 views

need help with iphone layout with fixed tabs and scrolling content

I am looking to develop a webpage specifically for viewing on an iPhone/mobile browsers. The layout would be something like this: I would like the two tabs at the top to be fixed, i.e. they would ...
2
votes
1answer
290 views

C# fixed point to floating point

I'm trying to get true type font glyph outlines using sample code from here. There are some small errors in the code, including the fact that it only considers the whole part of the fixed point ...
2
votes
3answers
504 views

Liquid - Fixed - Liquid Layout

I'm working on this web-site: http://www.justaddsolutions.com/SampleSite/ The main area is meant to be 1024px wide and always centered, which is achieved. However my client would like the yellow and ...
2
votes
2answers
2k views

jquery scroll to a px count from top and then set a div to be fixed from the top for the rest of the scroll

I am looking to change a div's css when i scroll to a certain point down the page, a certain amount of pixels from the top of the page. On page load i would have a div positioned statically. Once I ...
2
votes
4answers
657 views

Initialization of 2D array with dynamic number of rows and fixed number of columns. C++

I'm having problem with creating my 2D dynamic array in C++. I want it to have dynamic number (e.g. numR) of "rows" and fixed (e.g. 2) number of "columns". I tried doing it like this: const numC = ...
2
votes
2answers
165 views

Styling (fixing width) of columns within a specific table without affecting other tables

I wish to fix the width (in pixels) of three columns in a table without affecting other tables by styling. I can achieve the desired effect by styling the columns see the code below. However the ...
2
votes
1answer
508 views

jquery simplemodal plugin: popup that scroll with the page

Is there a 'valid' solution for the dialog to scroll with the scrollbar instead of still being fixed from the center of the inner window bound ? There is some situation where the user may have a too ...
2
votes
1answer
1k views

How to fix background image inside div

I've discovered a rather odd problem, which I think I know how to explain; i just don't know how to fix it! I have a page with a div#container (a div with 100% min-height (height for IE)) containing ...
2
votes
3answers
3k views

HTML table with horizontal scrolling (first column fixed)

I have been trying to think of a way to make a table with a fixed first column (and the rest of the table with a horizontal overflow) I saw a post which had a similar question. but the fixed column ...
2
votes
2answers
318 views

How to keep image from autorotating?

I've got an UIImageView as a background image for my application, which, like a helicopter in distress, autorotates. The problem is when the orientation autorotates my image gets shifted all over the ...

1 2 3 4 5 6