stuck before starting :-(
-
I started with Microsoft's Development Environment 2002. I am trying to use an Extended combo box. I want to specify 'COMCTL32.LIB. is linked into my program. How do I do it. I can not find where I specify the library so it is linked into my program. What configuratio dialog, project setting dialog and how do I get to it. Thanks, SAK
-
I started with Microsoft's Development Environment 2002. I am trying to use an Extended combo box. I want to specify 'COMCTL32.LIB. is linked into my program. How do I do it. I can not find where I specify the library so it is linked into my program. What configuratio dialog, project setting dialog and how do I get to it. Thanks, SAK
Go to the project settings dialog and switch to the tab "Linker". There you will find an editbox with caption "Object-/Library-Modules" where you can enter "comctl32.lib". -Dominik
_outp(0x64, 0xAD);
and__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? ;) -
Go to the project settings dialog and switch to the tab "Linker". There you will find an editbox with caption "Object-/Library-Modules" where you can enter "comctl32.lib". -Dominik
_outp(0x64, 0xAD);
and__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? ;)Thank you ...I think I must have a bad install....I cant seem to find this dialog box with the 'linker' tab. I have tried menu option 'Build > configuration manager' and 'Project > Properties' and dont see no tab. Should I be looking somewhere else for this dialog?
-
Thank you ...I think I must have a bad install....I cant seem to find this dialog box with the 'linker' tab. I have tried menu option 'Build > configuration manager' and 'Project > Properties' and dont see no tab. Should I be looking somewhere else for this dialog?
Project --> Settings, or Alt+F7.
-
I started with Microsoft's Development Environment 2002. I am trying to use an Extended combo box. I want to specify 'COMCTL32.LIB. is linked into my program. How do I do it. I can not find where I specify the library so it is linked into my program. What configuratio dialog, project setting dialog and how do I get to it. Thanks, SAK
-
I started with Microsoft's Development Environment 2002. I am trying to use an Extended combo box. I want to specify 'COMCTL32.LIB. is linked into my program. How do I do it. I can not find where I specify the library so it is linked into my program. What configuratio dialog, project setting dialog and how do I get to it. Thanks, SAK
You could also type
#pragma comment(lib, "COMCTL32.LIB");
somewhere in your code, then COMCTL32.LIB is included by the linker ;) - Anders Money talks, but all mine ever says is "Goodbye!" -
You could also type
#pragma comment(lib, "COMCTL32.LIB");
somewhere in your code, then COMCTL32.LIB is included by the linker ;) - Anders Money talks, but all mine ever says is "Goodbye!"