Tagged Questions

0
votes
2answers
26 views

How to click the segmentedControl object and use it to change view?

I want to implement just like interface builder segmented control, and click it to change views , I don't know under the segment if a NSBrowser or not. and how to change the view , can you give me …
1
vote
1answer
79 views

ljmp syntax in gcc inline assembly

I was thinking of using a far jump to set the code segment (CS) register. Getting into why I'm doing this and why I'm dealing with segmentation at all would take a while, so bear with me and consider …
1
vote
5answers
120 views

Storing data in segments with assembly

Hello everyone! I am learning x86 assembly language, and I understand the purpose and usage of segments. Segments hold vital data, and can also be used to store extra data (ie. Memory Segmentation …
0
votes
1answer
95 views

Cannot access label through segment registers, error in assembly

INCLUDE Irvine16.inc .data byteArray BYTE 6 DUP(?) listSize = ($ - byteArray) aSum WORD 0 soffset = 0 .code main PROC mov ax, @data mov ds, ax mov cx, listSize Loop1: …
0
votes
1answer
86 views

How to change segmentcontrol color while loading the iphone application?

Hi, i want to change the color of the segment color while loading the application. or is it possible to change the color of the segmentcontrol according to the NavigationBar header/title color? …
4
votes
3answers
165 views

Segment a list in Python

I am looking for an python inbuilt function (or mechanism) to segment a list into required segment lengths (without mutating the input list). Here is the code I already have: >>> def …
13
votes
4answers
3k views

.bss section in elf file

If I understand correctly, the .bss section in ELF files is used to allocate space for zero-initialized variables. Our tool chain produces ELF files, hence my question: does the .bss section actually …
0
votes
4answers
186 views

Sectioned List in Java/Swing?

I have a list of items in a JList for the user to select. Since it's a lot of items (say, cities in states), I want to divide the list into sections. The section headings should not be selectable, …
2
votes
5answers
528 views

Is runtime stack kept in data segment of memory?

I'm very curious of the stack memory organization after I experiment what's going on in the background and obviously saw it's matching with tiny knowledge I acquired from books. Just wanted to check …
0
votes
6answers
561 views

Lucene.NET --> access denied to segments

Hey all, I have a problem with Lucene.NET. During an index, I receive the error 'Access to the path segments is denied'. Or sometimes 'Access to the path deletable is denied'. I eventually gave …
1
vote
0answers
55 views

Obtaining information about executable code from exe/pdb

Hello, I need to extract code (but not data!) from classic win32 exe/dll files. It's clear I can't do this only with extraction of code segment content (because code segment contains also the data -- …