7
votes
3answers
181 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 kno …
4
votes
7answers
1k 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 …
3
votes
1answer
182 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
2answers
90 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 mainta …
2
votes
2answers
254 views
How to convert fixed byte/char[100] to managed char[] in C#?
What's the best way to convert a fixed byte or char[100] to a managed char[] in C#? I ended up having to use pointer arithmetic and I'm wondering if there is an easier way -- somet …
2
votes
3answers
294 views
How to implement a fixed-step loop?
I am attempting to create a fixed step loop in my program, but for some reason I just can't seem to get it to work properly. Basically what I need is a loop that does:
while(!over …
1
vote
2answers
127 views
Fixed keyboard inside a UIView
Is there a way to include a keyboard inside of a view?
I want it to be part of the view and not be dismissed as well.
Birdfeedapp does this in it's 'add account' modal view.
1
vote
3answers
498 views
IE 6 vs. position:fixed
Hello.
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.
<!D …
1
vote
1answer
184 views
Making a fixed tooltip vanish by scrolling.
I'm trying to create a messagebox that is fixed to the bottom of a webpage, so when a user scrolls, it stays put (simple css).
However, I'd like the messagebox to disappear when t …
0
votes
2answers
52 views
To call a method that requires IntPtr, is it better to use /unsafe, or Marshal.AllocHGlobal?
I have a class that will have a few instances persistent throughout the duration of the application. These objects will each need to call a dll method that appends data from an ex …
0
votes
0answers
17 views
Blocks to Fixed document/Fixed Page
Can any one help me to add Blocks(System.Windows.Documents.Block/ Section / BlockUIContainer) to the Fixed Document.
Thanking for your attention,
regards,
kuman
0
votes
2answers
74 views
Position Fixed in CSS within a bounding box?
I have a comment box like so...
<div id="comments">
...
</div>
Now, inside this comments div I have another div called box...
<div id="comments">
<di …
0
votes
2answers
100 views
Page Scroll under position: fixed content
I have a top navigation area with position: fixed
I'd like the page content to scroll normally, but not disappear under the navigation. The main issue is when I do a search, (this …
0
votes
2answers
47 views
Spread out elements over a fixed width div?
Hi
Is there way to spread out elements, (eg: <li>'s inside a <ul>), within a div?
EG: I have 3 elements, so they all get 30%
EG: I have 5 elements, so they get 20%
W …
0
votes
3answers
90 views
Fixed - Liquid - Fixed Layout
I'd like to have a [Fixed][Liquid][Fixed] cross-browser compatible layout.
HTML:
body
div#col-1
div#col-2
div#col-3
CSS:
#col-1 {
width:150px;
float:left;
…
