Click here to Skip to main content
15,878,871 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Comparing Files for Differences Pin
User 5838523-Oct-17 7:28
User 5838523-Oct-17 7:28 
Questionsend notification to srvice Pin
john563226-Sep-17 23:05
john563226-Sep-17 23:05 
AnswerRe: send notification to srvice Pin
CPallini26-Sep-17 23:25
mveCPallini26-Sep-17 23:25 
QuestionTo create drag and drop graphics builder Pin
manoharbalu25-Sep-17 21:05
manoharbalu25-Sep-17 21:05 
AnswerRe: To create drag and drop graphics builder Pin
Richard MacCutchan25-Sep-17 21:19
mveRichard MacCutchan25-Sep-17 21:19 
GeneralRe: To create drag and drop graphics builder Pin
manoharbalu25-Sep-17 22:26
manoharbalu25-Sep-17 22:26 
GeneralRe: To create drag and drop graphics builder Pin
Richard MacCutchan25-Sep-17 22:30
mveRichard MacCutchan25-Sep-17 22:30 
QuestionHelp with no default constructor message Pin
ForNow23-Sep-17 19:03
ForNow23-Sep-17 19:03 
Hi
I have a number of rich edit classes in my project. Defined basically as such

class Myrich : public CrichEditCtrl they all have a default constructor with no parameters

I now wanted to extend their functionality with paging (up or down) cursor selection etc.

So I wrote a class KeyStroke. I declared KyStroke(s) in each of my classes as such

KeyStroke mykeys; in my .h class definitions. My constructer for KeyStroke takes 2

parameters the number of lines in the rich edit and a pointer to a rich edit class

So that meant I would have to modify my rich edit constructor as such

MyRich::MyRich() ---> MyRich::MyRich(int numlines, CRichEditCtrl* myrichptr) : KeyStroke(int numlines, CRichEditCtrl* myrichptr)

I am getting all sorts of errors with this such as "int" unexpected and KeyStroke no default contsructor
AnswerRe: Help with no default constructor message Pin
Richard MacCutchan23-Sep-17 21:06
mveRichard MacCutchan23-Sep-17 21:06 
GeneralRe: Help with no default constructor message Pin
ForNow24-Sep-17 3:52
ForNow24-Sep-17 3:52 
GeneralRe: Help with no default constructor message Pin
Richard MacCutchan24-Sep-17 4:00
mveRichard MacCutchan24-Sep-17 4:00 
GeneralRe: Help with no default constructor message Pin
ForNow24-Sep-17 4:12
ForNow24-Sep-17 4:12 
GeneralRe: Help with no default constructor message Pin
ForNow24-Sep-17 6:02
ForNow24-Sep-17 6:02 
AnswerRe: Help with no default constructor message Pin
Richard Andrew x6424-Sep-17 5:40
professionalRichard Andrew x6424-Sep-17 5:40 
GeneralRe: Help with no default constructor message Pin
ForNow24-Sep-17 5:57
ForNow24-Sep-17 5:57 
GeneralRe: Help with no default constructor message Pin
Richard Andrew x6424-Sep-17 6:10
professionalRichard Andrew x6424-Sep-17 6:10 
GeneralRe: Help with no default constructor message .. related question Pin
ForNow24-Sep-17 9:28
ForNow24-Sep-17 9:28 
AnswerRe: Help with no default constructor message .. related question Pin
Richard Andrew x6424-Sep-17 10:14
professionalRichard Andrew x6424-Sep-17 10:14 
GeneralRe: Help with no default constructor message .. related question Pin
ForNow24-Sep-17 10:52
ForNow24-Sep-17 10:52 
AnswerRe: Help with no default constructor message .. related question Pin
Richard Andrew x6424-Sep-17 11:07
professionalRichard Andrew x6424-Sep-17 11:07 
GeneralRe: Help with no default constructor message .. related question Pin
ForNow24-Sep-17 11:19
ForNow24-Sep-17 11:19 
AnswerRe: Help with no default constructor message .. related question Pin
Richard Andrew x6424-Sep-17 11:39
professionalRichard Andrew x6424-Sep-17 11:39 
GeneralRe: Help with no default constructor message .. related question Pin
ForNow24-Sep-17 12:52
ForNow24-Sep-17 12:52 
GeneralRe: Help with no default constructor message .. related question found answer Pin
ForNow25-Sep-17 8:35
ForNow25-Sep-17 8:35 
AnswerRe: Help with no default constructor message Pin
Jochen Arndt25-Sep-17 21:30
professionalJochen Arndt25-Sep-17 21:30 

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.