Click here to Skip to main content
15,881,649 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
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 
GeneralRe: Help with no default constructor message Pin
ForNow26-Sep-17 2:18
ForNow26-Sep-17 2:18 
QuestionProblem in loading c run time library in Visual C++ Pin
Member 1192324422-Sep-17 3:28
Member 1192324422-Sep-17 3:28 

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.