Question : threads in mfc

hi guys,

i am a beginner level in programming..and I fund this code already written, but it is under linux. I have a mfc project and I have to add this new code to y own project.

the new code is here

http://www.cs.duke.edu/~parr/dpslam/#code

the new code uses pthreads..and that is again something a big unknown for me. Bu tI have to finish this project as soon as possible.

How do you suggest I can do that? can you give me some steps that I sould follow?
Thank you very much!

Answer : threads in mfc

The class you are looking for is
view-id-display-id-page_4
The code below is somewhat crude, but reflects what you want. It will color "views-field-title" red, but only if it's within the "page_4" view.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
<html>
<head>
<title>A</title>
<style>
.view-id-display-id-page_4 .views-field-title {
        color: red;
}
</style>
</head>
<body>
<div class="view-id-display-id-page_4">
        <div class="views-field-title">
                Red text
        </div>
</div>
<div class="views-field-title">
        Not red text
</div>
</div>
</body>
Random Solutions  
 
programming4us programming4us