Click here to Skip to main content
16,004,678 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How do I write red text to a CDialogBar? Pin
ovidiucucu31-Aug-06 6:16
ovidiucucu31-Aug-06 6:16 
GeneralRe: How do I write red text to a CDialogBar? Pin
IlanTal3-Sep-06 21:44
IlanTal3-Sep-06 21:44 
GeneralRe: How do I write red text to a CDialogBar? Pin
ovidiucucu4-Sep-06 0:04
ovidiucucu4-Sep-06 0:04 
GeneralRe: How do I write red text to a CDialogBar? Pin
IlanTal4-Sep-06 20:19
IlanTal4-Sep-06 20:19 
GeneralRe: How do I write red text to a CDialogBar? Pin
IlanTal4-Sep-06 23:06
IlanTal4-Sep-06 23:06 
Question(*pf)(int); *pf(int); Pin
Max++31-Aug-06 1:21
Max++31-Aug-06 1:21 
AnswerRe: (*pf)(int); *pf(int); Pin
salman kazi31-Aug-06 1:40
salman kazi31-Aug-06 1:40 
AnswerRe: (*pf)(int); *pf(int); Pin
toxcct31-Aug-06 1:56
toxcct31-Aug-06 1:56 
double (*pf)(int);
this declares pf as a pointer fo a function which gets an int parameter, and returns a double.
such a variable can be used like this :
double Foo(int i) { return (double) i; }
 
double (*pf)(int);
pf = &Foo;
double d = pf(4);


double *pf(int);
this declares a function called pf getting an int parameter and returning a pointer to a double (double*).
you can use it like this :
double* pf(int);
 
double* pd = pf(4);
double twice = (*pd) * 2;



TOXCCT >>> GEII power

[VisualCalc 3.0  updated ][Flags Beginner's Guide  new! ]

Questionhow i block the e-mail attachment in VC++? Pin
salman kazi31-Aug-06 1:19
salman kazi31-Aug-06 1:19 
QuestionWindows date and time conversion Pin
ashokvishnu31-Aug-06 0:57
ashokvishnu31-Aug-06 0:57 
AnswerRe: Windows date and time conversion Pin
_AnsHUMAN_ 31-Aug-06 1:01
_AnsHUMAN_ 31-Aug-06 1:01 
AnswerRe: View Refresh problem Pin
Cedric Moonen31-Aug-06 0:52
Cedric Moonen31-Aug-06 0:52 
QuestionCGRAPH OR MS CHART?? Pin
weehau31-Aug-06 0:20
weehau31-Aug-06 0:20 
AnswerRe: CGRAPH OR MS CHART?? Pin
toxcct31-Aug-06 0:40
toxcct31-Aug-06 0:40 
GeneralRe: CGRAPH OR MS CHART?? Pin
Cedric Moonen31-Aug-06 0:51
Cedric Moonen31-Aug-06 0:51 
GeneralRe: CGRAPH OR MS CHART?? Pin
toxcct31-Aug-06 0:51
toxcct31-Aug-06 0:51 
GeneralRe: CGRAPH OR MS CHART?? Pin
dinesh_IP31-Aug-06 1:50
dinesh_IP31-Aug-06 1:50 
GeneralRe: CGRAPH OR MS CHART?? Pin
toxcct31-Aug-06 1:57
toxcct31-Aug-06 1:57 
GeneralRe: CGRAPH OR MS CHART?? Pin
Cedric Moonen31-Aug-06 2:29
Cedric Moonen31-Aug-06 2:29 
GeneralRe: CGRAPH OR MS CHART?? Pin
Rage31-Aug-06 3:47
professionalRage31-Aug-06 3:47 
QuestionMapViewOfFile Fails Pin
Gupta Suraj31-Aug-06 0:20
Gupta Suraj31-Aug-06 0:20 
AnswerRe: MapViewOfFile Fails Pin
prasad_som31-Aug-06 1:10
prasad_som31-Aug-06 1:10 
GeneralRe: MapViewOfFile Fails Pin
svsundar (Vairavan)31-Aug-06 2:15
svsundar (Vairavan)31-Aug-06 2:15 
QuestionFind if system is going into stand by mode Pin
HarishDixit30-Aug-06 23:43
HarishDixit30-Aug-06 23:43 
AnswerRe: Find if system is going into stand by mode Pin
Marc Soleda31-Aug-06 0:58
Marc Soleda31-Aug-06 0:58 

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.