Click here to Skip to main content
15,894,017 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to Load Image from url? Pin
SIJUTHOMASP12-Mar-09 0:53
professionalSIJUTHOMASP12-Mar-09 0:53 
AnswerRe: How to Load Image from url? Pin
sashoalm12-Mar-09 5:45
sashoalm12-Mar-09 5:45 
GeneralRe: How to Load Image from url? Pin
SIJUTHOMASP12-Mar-09 6:06
professionalSIJUTHOMASP12-Mar-09 6:06 
AnswerRe: How to Load Image from url? Pin
Hamid_RT12-Mar-09 20:09
Hamid_RT12-Mar-09 20:09 
GeneralRe: How to Load Image from url? Pin
SIJUTHOMASP16-Mar-09 0:42
professionalSIJUTHOMASP16-Mar-09 0:42 
GeneralRe: How to Load Image from url? Pin
Hamid_RT16-Mar-09 3:54
Hamid_RT16-Mar-09 3:54 
QuestionPlease explain the reason of the error Pin
_anil_12-Mar-09 0:23
_anil_12-Mar-09 0:23 
AnswerRe: Please explain the reason of the error Pin
Stuart Dootson12-Mar-09 0:29
professionalStuart Dootson12-Mar-09 0:29 
Because fun1 in derive hides the definition of fun1 in base. Use base::fun1(), like this:

class base 
{
public:
void fun1()
{
}

virtual void call()
{
}
};

class derive:public base
{
public:
void call()
{
base::fun1(); // ERROR- function does not take 0 arguments
}

void fun1(int i)
{

}
};


Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

GeneralRe: Please explain the reason of the error Pin
_anil_12-Mar-09 0:34
_anil_12-Mar-09 0:34 
GeneralRe: Please explain the reason of the error Pin
Stuart Dootson12-Mar-09 0:38
professionalStuart Dootson12-Mar-09 0:38 
GeneralRe: Please explain the reason of the error Pin
_anil_12-Mar-09 0:48
_anil_12-Mar-09 0:48 
GeneralRe: Please explain the reason of the error Pin
CPallini12-Mar-09 0:40
mveCPallini12-Mar-09 0:40 
Questionhow to trap sound using cpp. Pin
Markandaiya Harsh11-Mar-09 23:40
Markandaiya Harsh11-Mar-09 23:40 
AnswerRe: how to trap sound using cpp. Pin
Cedric Moonen11-Mar-09 23:57
Cedric Moonen11-Mar-09 23:57 
GeneralRe: how to trap sound using cpp. Pin
Jijo.Raj12-Mar-09 0:03
Jijo.Raj12-Mar-09 0:03 
Questionfuzzy controller in AVR ATMega16 Pin
adamharika11-Mar-09 22:26
adamharika11-Mar-09 22:26 
AnswerRe: fuzzy controller in AVR ATMega16 Pin
CPallini11-Mar-09 22:48
mveCPallini11-Mar-09 22:48 
GeneralRe: fuzzy controller in AVR ATMega16 Pin
SandipG 12-Mar-09 0:11
SandipG 12-Mar-09 0:11 
AnswerRe: fuzzy controller in AVR ATMega16 Pin
zahra-6519-Jul-13 9:38
zahra-6519-Jul-13 9:38 
QuestionCRichEditCtrl::StreamOut property Pin
amit.code11-Mar-09 22:22
amit.code11-Mar-09 22:22 
AnswerRe: CRichEditCtrl::StreamOut property Pin
Stuart Dootson12-Mar-09 0:26
professionalStuart Dootson12-Mar-09 0:26 
QuestionChangeWindowMessageFilter Pin
Van Binh11-Mar-09 21:51
Van Binh11-Mar-09 21:51 
QuestionNeed Help for PropertySheet or TabCtrl. Pin
Le@rner11-Mar-09 21:38
Le@rner11-Mar-09 21:38 
AnswerRe: Need Help for PropertySheet or TabCtrl. Pin
wo will rock you11-Mar-09 22:23
wo will rock you11-Mar-09 22:23 
GeneralRe: Need Help for PropertySheet or TabCtrl. Pin
Le@rner11-Mar-09 22:27
Le@rner11-Mar-09 22:27 

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.