Click here to Skip to main content
15,921,941 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How can i disable pressing of special characters(@,#,$,%,^,&,*,~,!) on Editbox control? Pin
Yajnesh Narayan Behera24-Jul-08 19:52
Yajnesh Narayan Behera24-Jul-08 19:52 
AnswerRe: How can i disable pressing of special characters(@,#,$,%,^,&,*,~,!) on Editbox control? Pin
_AnsHUMAN_ 24-Jul-08 19:55
_AnsHUMAN_ 24-Jul-08 19:55 
GeneralRe: How can i disable pressing of special characters(@,#,$,%,^,&,*,~,!) on Editbox control? Pin
Le@rner24-Jul-08 20:38
Le@rner24-Jul-08 20:38 
GeneralRe: How can i disable pressing of special characters(@,#,$,%,^,&,*,~,!) on Editbox control? Pin
User 248443724-Jul-08 23:29
User 248443724-Jul-08 23:29 
QuestionBotton clicked on Pressing Tab Key. Pin
Le@rner24-Jul-08 19:11
Le@rner24-Jul-08 19:11 
AnswerRe: Botton clicked on Pressing Tab Key. [modified] Pin
Yajnesh Narayan Behera24-Jul-08 20:02
Yajnesh Narayan Behera24-Jul-08 20:02 
QuestionQuestion about classes Pin
monsieur_jj24-Jul-08 16:30
monsieur_jj24-Jul-08 16:30 
AnswerRe: Question about classes [modified] Pin
_AnsHUMAN_ 24-Jul-08 18:44
_AnsHUMAN_ 24-Jul-08 18:44 
That is function overloading. Allows you to use functions with the same name that do similar tasks. Based on the parameters of the function the compiler decides [runtime] which version of the function does it give a call to.
For eg: if you have to add two numbers irrespective of the parameters to the Add function you can simply write:
void Add(int a, int b);
//or
void Add(float a, float b);


it would really be a bit cryptic if you want to add two numbers and have to write functions as
void AddInt(int a, int b);
void AddFloat(float a, float b);

you would need hundreds of names in case you want to add different types of variables and write functions for them.
In essence function with the same name do similar tasks. In your case they give you the Conversion Rate with different parameter types

Somethings seem HARD to do, until we know how to do them.
Wink | ;-) _AnShUmAn_

modified on Friday, July 25, 2008 1:03 AM

QuestionModifying input stream of Video before playing it Pin
tibiz24-Jul-08 11:10
tibiz24-Jul-08 11:10 
AnswerRe: Modifying input stream of Video before playing it Pin
Mark Salsbery25-Jul-08 6:49
Mark Salsbery25-Jul-08 6:49 
GeneralRe: Modifying input stream of Video before playing it Pin
tibiz25-Jul-08 7:12
tibiz25-Jul-08 7:12 
QuestionSupplying new command line parameters to the executable already active Pin
Hari-Adarapu24-Jul-08 9:34
Hari-Adarapu24-Jul-08 9:34 
AnswerRe: Supplying new command line parameters to the executable already active Pin
CPallini24-Jul-08 9:49
mveCPallini24-Jul-08 9:49 
AnswerRe: Supplying new command line parameters to the executable already active Pin
David Crow24-Jul-08 10:54
David Crow24-Jul-08 10:54 
AnswerRe: Supplying new command line parameters to the executable already active Pin
led mike24-Jul-08 11:20
led mike24-Jul-08 11:20 
Answermaybe a solution Pin
tibiz24-Jul-08 11:24
tibiz24-Jul-08 11:24 
AnswerRe: Supplying new command line parameters to the executable already active Pin
KarstenK24-Jul-08 23:31
mveKarstenK24-Jul-08 23:31 
Questionhow to change the size of a static text by programming Pin
DSPCottage24-Jul-08 9:28
DSPCottage24-Jul-08 9:28 
QuestionRe: how to change the size of a static text by programming Pin
CPallini24-Jul-08 9:46
mveCPallini24-Jul-08 9:46 
AnswerRe: how to change the size of a static text by programming Pin
DSPCottage24-Jul-08 9:49
DSPCottage24-Jul-08 9:49 
QuestionHow to make a CStatic control to support mouse selection( can be copied) Pin
Junchi Tang24-Jul-08 7:27
Junchi Tang24-Jul-08 7:27 
AnswerRe: How to make a CStatic control to support mouse selection( can be copied) Pin
Mark Salsbery24-Jul-08 7:34
Mark Salsbery24-Jul-08 7:34 
GeneralRe: How to make a CStatic control to support mouse selection( can be copied) Pin
Junchi Tang24-Jul-08 9:45
Junchi Tang24-Jul-08 9:45 
GeneralRe: How to make a CStatic control to support mouse selection( can be copied) Pin
CPallini24-Jul-08 9:51
mveCPallini24-Jul-08 9:51 
GeneralRe: How to make a CStatic control to support mouse selection( can be copied) Pin
Rajesh R Subramanian19-Aug-08 19:34
professionalRajesh R Subramanian19-Aug-08 19:34 

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.