Click here to Skip to main content
15,902,777 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalwinexec window control ! Pin
Anonymous14-Feb-04 4:29
Anonymous14-Feb-04 4:29 
GeneralRe: winexec window control ! Pin
valikac14-Feb-04 5:31
valikac14-Feb-04 5:31 
QuestionHow to find out the abandoned children? Pin
codeant14-Feb-04 3:52
codeant14-Feb-04 3:52 
AnswerRe: How to find out the abandoned children? Pin
John M. Drescher14-Feb-04 5:11
John M. Drescher14-Feb-04 5:11 
GeneralRe: How to find out the abandoned children? Pin
codeant14-Feb-04 8:40
codeant14-Feb-04 8:40 
Generalimages(.bmp) in listbox Pin
santosh k14-Feb-04 1:34
santosh k14-Feb-04 1:34 
GeneralLinking Error Pin
merlin37114-Feb-04 1:13
merlin37114-Feb-04 1:13 
GeneralRe: Linking Error Pin
Antti Keskinen14-Feb-04 1:30
Antti Keskinen14-Feb-04 1:30 
This type of error is most common when you have declared a member function, but have not implemented it. Please see the CPriceCalculatorDlg class for a member function called OnEnChangeRetail.

If it exists in the header file, write an implementation code for it in the code file. If you don't need/want this member function:
1. Remove it's declaration from the header file
2. Put a '{}' after the declaration and remove the semicolon ending. This is same as writing an empty function to the implementation file
3. Declare the function as pure virtual, by adding 'virtual' keyword in front of it and an '=0' after it, before the ending semicolon.

If you have implemented this function, make sure it's name and the parameters passed to it match precisely.

-Antti Keskinen

----------------------------------------------
The definition of impossible is strictly dependant
on what we think is possible.
GeneralCMenu and TrackPopupMenu Pin
alex.barylski14-Feb-04 0:52
alex.barylski14-Feb-04 0:52 
GeneralRe: CMenu and TrackPopupMenu Pin
Antti Keskinen14-Feb-04 1:51
Antti Keskinen14-Feb-04 1:51 
GeneralRe: CMenu and TrackPopupMenu Pin
alex.barylski14-Feb-04 10:18
alex.barylski14-Feb-04 10:18 
GeneralHelp with Windows Hooks Pin
Bitzer.bit13-Feb-04 23:57
Bitzer.bit13-Feb-04 23:57 
GeneralRe: Help with Windows Hooks Pin
Monty214-Feb-04 0:12
Monty214-Feb-04 0:12 
GeneralRe: Help with Windows Hooks Pin
Bitzer.bit14-Feb-04 0:19
Bitzer.bit14-Feb-04 0:19 
Generalcustomize script debugger Pin
alan.net13-Feb-04 22:50
alan.net13-Feb-04 22:50 
Generalcheck DC type Pin
Hesham Amin13-Feb-04 22:49
Hesham Amin13-Feb-04 22:49 
GeneralRe: check DC type Pin
Robert A. T. Káldy16-Feb-04 12:34
Robert A. T. Káldy16-Feb-04 12:34 
QuestionHow to add icon on the toolbar Pin
siew hoon13-Feb-04 21:36
siew hoon13-Feb-04 21:36 
AnswerRe: How to add icon on the toolbar Pin
Shog914-Feb-04 10:25
sitebuilderShog914-Feb-04 10:25 
QuestionHow to Open New Database Pin
siew hoon13-Feb-04 21:23
siew hoon13-Feb-04 21:23 
GeneralApplication that runs as Service Pin
Chintan13-Feb-04 21:21
Chintan13-Feb-04 21:21 
GeneralRe: Application that runs as Service Pin
Antti Keskinen14-Feb-04 2:09
Antti Keskinen14-Feb-04 2:09 
GeneralRe: Application that runs as Service Pin
Anonymous15-Feb-04 0:16
Anonymous15-Feb-04 0:16 
GeneralRe: Application that runs as Service Pin
Dudi Avramov16-Feb-04 1:21
Dudi Avramov16-Feb-04 1:21 
GeneralMultiple document interface Pin
Anonymous13-Feb-04 18:34
Anonymous13-Feb-04 18:34 

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.