Click here to Skip to main content
16,005,467 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to use PowerPoint ActiveX control in a Dialog ? Pin
9-Aug-01 12:01
suss9-Aug-01 12:01 
AnswerRe: How to use PowerPoint ActiveX control in a Dialog ? Pin
Oliver Daniel9-Aug-01 12:11
Oliver Daniel9-Aug-01 12:11 
GeneralRe: How to use PowerPoint ActiveX control in a Dialog ? Pin
10-Aug-01 6:23
suss10-Aug-01 6:23 
AnswerRe: How to use PowerPoint ActiveX control in a Dialog ? Pin
Carlos Antollini9-Aug-01 12:21
Carlos Antollini9-Aug-01 12:21 
GeneralATL hell - import object to MFC project Pin
Christian Graus9-Aug-01 11:44
protectorChristian Graus9-Aug-01 11:44 
GeneralRe: ATL hell - import object to MFC project Pin
Todd Smith9-Aug-01 14:27
Todd Smith9-Aug-01 14:27 
GeneralImport Libraries?? (Damn Newbie) Pin
9-Aug-01 11:08
suss9-Aug-01 11:08 
GeneralRe: Import Libraries?? (Damn Newbie) Pin
Malcolm McMahon9-Aug-01 22:06
Malcolm McMahon9-Aug-01 22:06 
Usually libraries will involve one or more .h files in a directory. When C++ is looking for a .h file invoked by an include with <xxxx.h> it searchs a list of directories which is set somewhere in the options stuff. An include with quotes checks the source directory first. So the proper way of accessing a library is to include the directory with the headers in the header search path, not to put the headers into your source or copy the contents of them. (Obviously your own code must invoke them with a
<br />
#include <xxxx.h><br />


The linker has it's own, seperate list of libraries to search. You'll need to add the .lib files to your project.

As to getting user actions, if you're doing games you should probably be looking at the DirectInput library. That's what it's there for.
GeneralUnresolved externals - Ugh! Pin
Bret Faller9-Aug-01 7:35
Bret Faller9-Aug-01 7:35 
GeneralRe: Unresolved externals - Ugh! Pin
J Patel9-Aug-01 10:27
J Patel9-Aug-01 10:27 
GeneralRe: Unresolved externals - Ugh! Pin
Bret Faller9-Aug-01 10:38
Bret Faller9-Aug-01 10:38 
GeneralRe: Unresolved externals - Ugh! Pin
15-Oct-01 8:07
suss15-Oct-01 8:07 
GeneralRe: Unresolved externals - Ugh! Pin
15-Oct-01 8:42
suss15-Oct-01 8:42 
Generalsize and a passed pointer Pin
9-Aug-01 7:02
suss9-Aug-01 7:02 
GeneralRe: size and a passed pointer Pin
User 98859-Aug-01 7:08
User 98859-Aug-01 7:08 
GeneralRe: size and a passed pointer Pin
Bret Faller9-Aug-01 8:21
Bret Faller9-Aug-01 8:21 
GeneralForcing a range validation of an edit box before a scrollbar command is activated Pin
brewer_d9-Aug-01 6:09
brewer_d9-Aug-01 6:09 
GeneralCComboBox Messages Pin
Michael Martin9-Aug-01 5:49
professionalMichael Martin9-Aug-01 5:49 
GeneralRe: CComboBox Messages Pin
Carlos Antollini9-Aug-01 6:06
Carlos Antollini9-Aug-01 6:06 
GeneralRe: CComboBox Messages Pin
Michael Martin9-Aug-01 6:16
professionalMichael Martin9-Aug-01 6:16 
GeneralRe: CComboBox Messages Pin
Carlos Antollini9-Aug-01 6:30
Carlos Antollini9-Aug-01 6:30 
GeneralRe: CComboBox Messages Pin
Michael Martin9-Aug-01 6:34
professionalMichael Martin9-Aug-01 6:34 
GeneralRe: CComboBox Messages Pin
Tomasz Sowinski9-Aug-01 6:28
Tomasz Sowinski9-Aug-01 6:28 
GeneralRe: CComboBox Messages Pin
Michael Martin9-Aug-01 6:47
professionalMichael Martin9-Aug-01 6:47 
Generalin vc6.0 and mfc4.2 's link.exe 's error Pin
9-Aug-01 5:29
suss9-Aug-01 5:29 

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.