Click here to Skip to main content
15,921,542 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralNewbie question: control integer identifier Pin
Bartek14-May-01 22:06
Bartek14-May-01 22:06 
GeneralRe: Newbie question: control integer identifier Pin
Christian Graus14-May-01 23:03
protectorChristian Graus14-May-01 23:03 
GeneralPress a key in a MFC ActiveX control Pin
14-May-01 20:08
suss14-May-01 20:08 
QuestionMp3 ??? Pin
14-May-01 12:04
suss14-May-01 12:04 
AnswerRe: Mp3 ??? Pin
Christian Graus14-May-01 12:50
protectorChristian Graus14-May-01 12:50 
GeneralWTL Property Sheet Pin
Lilian Chan-Grant14-May-01 10:33
Lilian Chan-Grant14-May-01 10:33 
General__asm?? Some help me!! Pin
mvworld14-May-01 9:15
mvworld14-May-01 9:15 
GeneralRe: __asm?? Some help me!! Pin
Pavlos Touboulidis14-May-01 10:48
Pavlos Touboulidis14-May-01 10:48 
Ok. Here's a quick example. You should be able to figure out the rest.

list *my_list;

my_list = new list;
my_list->value = 1234;
my_list->next = new list;
my_list->next->value = 5678;

__asm
{
mov eax, my_list // eax = my_list;
mov ebx, dword ptr [eax] // ebx = my_list->value
mov ecx, dword ptr [eax+4] // ecx = my_list->next
mov edx, dword ptr [ecx] // edx = ecx->value
}

GeneralSerialize Pin
mr200314-May-01 8:47
mr200314-May-01 8:47 
GeneralRe: Serialize Pin
Christian Graus14-May-01 12:52
protectorChristian Graus14-May-01 12:52 
GeneralRe: Serialize Pin
14-May-01 23:38
suss14-May-01 23:38 
GeneralWindow extensions in GDI Pin
14-May-01 6:36
suss14-May-01 6:36 
GeneralFilling a combo box from outside its dialog Pin
Wayne Janaway14-May-01 6:27
Wayne Janaway14-May-01 6:27 
GeneralRe: Filling a combo box from outside its dialog Pin
David Fleming14-May-01 12:07
David Fleming14-May-01 12:07 
GeneralRe: The easiest way is ... Pin
Masaaki Onishi14-May-01 17:58
Masaaki Onishi14-May-01 17:58 
GeneralRe: Filling a combo box from outside its dialog Pin
#realJSOP15-May-01 8:23
professional#realJSOP15-May-01 8:23 
Questioncall strcpy??????????? Pin
14-May-01 4:42
suss14-May-01 4:42 
AnswerRe: call strcpy??????????? Pin
XKent14-May-01 9:02
XKent14-May-01 9:02 
AnswerRe: call strcpy??????????? Pin
David Fleming14-May-01 14:05
David Fleming14-May-01 14:05 
GeneralRe: call strcpy??????????? Pin
14-May-01 15:42
suss14-May-01 15:42 
GeneralRe: call strcpy??????????? Pin
15-May-01 3:56
suss15-May-01 3:56 
AnswerRe: call strcpy??????????? Pin
15-May-01 4:18
suss15-May-01 4:18 
AnswerRe: call strcpy??????????? Pin
#realJSOP16-May-01 0:56
professional#realJSOP16-May-01 0:56 
GeneralStopping an application... Pin
Roger14-May-01 2:34
Roger14-May-01 2:34 
GeneralRe: Stopping an application... Pin
Tomasz Sowinski14-May-01 2:42
Tomasz Sowinski14-May-01 2:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.