Click here to Skip to main content
15,892,927 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: Comparing Files for Differences Pin
David Crow27-Sep-17 5:24
David Crow27-Sep-17 5:24 
AnswerRe: Comparing Files for Differences Pin
jschell27-Sep-17 9:23
jschell27-Sep-17 9:23 
GeneralRe: Comparing Files for Differences Pin
Member 1343302228-Sep-17 2:41
Member 1343302228-Sep-17 2:41 
GeneralRe: Comparing Files for Differences Pin
Jochen Arndt28-Sep-17 3:29
professionalJochen Arndt28-Sep-17 3:29 
GeneralMessage Closed Pin
29-Sep-17 4:00
Member 1343302229-Sep-17 4:00 
GeneralRe: Comparing Files for Differences Pin
jeron129-Sep-17 4:47
jeron129-Sep-17 4:47 
GeneralRe: Comparing Files for Differences Pin
Jochen Arndt29-Sep-17 4:58
professionalJochen Arndt29-Sep-17 4:58 
GeneralRe: Comparing Files for Differences Pin
jschell29-Sep-17 6:57
jschell29-Sep-17 6:57 
AnswerRe: Comparing Files for Differences Pin
Joe Woodbury29-Sep-17 13:04
professionalJoe Woodbury29-Sep-17 13:04 
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 
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 
I did that I am still getting errors as stated below

\progedit.cpp(13): error C2062: type 'int' unexpected

1>  progdialog.cpp


while intellsense says class KeyStroke

"KeyStroke" is a nonstatic data member or base class of class Cprogedit

I have KeyStroke in Cprogedit.h as KeyStroke mystroke; in the public section of the class

I have defined a constructor for Cprogedit which will provide the paramters for Keystroke
as such

C++
CProgedit::CProgedit(int numlines, CProgedit* editptr) : KeyStroke(int numlines, CProgedit* editptr)


C++
KeyStroke::KeyStroke()
{
}
    KeyStroke::KeyStroke(int numlines, CRichEditCtrl* editptr)
    {
        max_line = numlines;
        edit_ptr = editptr;
    }

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 

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.