Click here to Skip to main content
15,908,166 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Standalone application Pin
toxcct4-Apr-06 21:52
toxcct4-Apr-06 21:52 
GeneralRe: Standalone application Pin
Sendilkumar.M5-Apr-06 17:44
Sendilkumar.M5-Apr-06 17:44 
GeneralRe: Standalone application Pin
toxcct5-Apr-06 21:28
toxcct5-Apr-06 21:28 
QuestionParallel Port I/O Library in C++ Pin
CNewbie4-Apr-06 16:45
CNewbie4-Apr-06 16:45 
AnswerRe: Parallel Port I/O Library in C++ Pin
Ștefan-Mihai MOGA4-Apr-06 20:50
professionalȘtefan-Mihai MOGA4-Apr-06 20:50 
QuestionCatch the text of the Window Items Pin
vtalau4-Apr-06 16:05
vtalau4-Apr-06 16:05 
AnswerRe: Catch the text of the Window Items Pin
Anilkumar K V4-Apr-06 18:34
Anilkumar K V4-Apr-06 18:34 
AnswerRe: Catch the text of the Window Items Pin
Michael Dunn4-Apr-06 20:12
sitebuilderMichael Dunn4-Apr-06 20:12 
Questionexported class meets DoModal() error! Pin
sting_lee4-Apr-06 16:01
sting_lee4-Apr-06 16:01 
QuestionKey code question Pin
EvScott4-Apr-06 15:42
EvScott4-Apr-06 15:42 
AnswerRe: Key code question Pin
Waldermort5-Apr-06 0:01
Waldermort5-Apr-06 0:01 
QuestionNetwork Client Registry Question Pin
u6ik4-Apr-06 15:22
u6ik4-Apr-06 15:22 
AnswerRe: Network Client Registry Question Pin
kakan4-Apr-06 21:27
professionalkakan4-Apr-06 21:27 
GeneralRe: Network Client Registry Question Pin
u6ik4-Apr-06 21:59
u6ik4-Apr-06 21:59 
QuestionProblem with the window handle m_hWnd Pin
dannyham4-Apr-06 14:41
dannyham4-Apr-06 14:41 
AnswerRe: Problem with the window handle m_hWnd Pin
Giannakakis Kostas4-Apr-06 19:53
professionalGiannakakis Kostas4-Apr-06 19:53 
GeneralRe: Problem with the window handle m_hWnd Pin
dannyham4-Apr-06 22:21
dannyham4-Apr-06 22:21 
QuestionActiveX Print Template Pin
folken_max4-Apr-06 14:27
folken_max4-Apr-06 14:27 
Questionlink library + crazy error Pin
surfman194-Apr-06 13:40
surfman194-Apr-06 13:40 
AnswerRe: link library + crazy error Pin
Michael Dunn4-Apr-06 13:44
sitebuilderMichael Dunn4-Apr-06 13:44 
GeneralRe: link library + crazy error Pin
surfman194-Apr-06 14:23
surfman194-Apr-06 14:23 
QuestionRegisterWindowMessage Text Pin
Blake Miller4-Apr-06 12:31
Blake Miller4-Apr-06 12:31 
Questionabout LoadLibrary method in embedded Visual C++ Pin
George_George4-Apr-06 12:29
George_George4-Apr-06 12:29 
QuestionHuge Favour - re: compiling source Pin
ldsdbomber4-Apr-06 12:19
ldsdbomber4-Apr-06 12:19 
AnswerRe: Huge Favour - re: compiling source Pin
Anilkumar K V4-Apr-06 20:11
Anilkumar K V4-Apr-06 20:11 
Usually the procedure like this

Include the header file, in one of ur header/source file
Create DiComDataObject or whatever u need
Copy the Lib file to ur project directory
Add the library name in VisualStudio ->Project > Settings -> link tab
object library modules

By default, Visual C++ projects use precompiled headers. This is a system whereby the large Windows headers are compiled only once when you build stdafx.cpp. Every other .CPP file in your project needs to #include "stdafx.h" as the first #include in order to build. The compiler specifically looks for the name "stdafx.h" to know when to insert the precompiled header information.
If you received the source for an entire program from someone else, and you want to build it as a Visual C++ project, you can turn off precompiled headers instead. In your project options, go to the C/C++ tab and select the Precompiled headers category. Click the Not using precompiled headers radio button, then click OK.


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.