Click here to Skip to main content
15,891,864 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Why is my EXE so big? Pin
Naveen21-Jan-09 16:47
Naveen21-Jan-09 16:47 
AnswerRe: Why is my EXE so big? Pin
Code-o-mat21-Jan-09 22:54
Code-o-mat21-Jan-09 22:54 
GeneralRe: Why is my EXE so big? Pin
Peter Weyzen22-Jan-09 5:57
Peter Weyzen22-Jan-09 5:57 
QuestionBinary Predicate for Templated Class Pin
mjackson1121-Jan-09 8:27
mjackson1121-Jan-09 8:27 
QuestionRe: Binary Predicate for Templated Class Pin
led mike21-Jan-09 10:31
led mike21-Jan-09 10:31 
AnswerRe: Binary Predicate for Templated Class Pin
Dan21-Jan-09 10:32
Dan21-Jan-09 10:32 
AnswerRe: Binary Predicate for Templated Class Pin
mjackson1121-Jan-09 11:14
mjackson1121-Jan-09 11:14 
AnswerRe: Binary Predicate for Templated Class Pin
Stephen Hewitt21-Jan-09 16:14
Stephen Hewitt21-Jan-09 16:14 
On a side note, a few changes will makes things better. First change this function by adding the underlined bits:
bool exp_LT(const curvePoint<double> &lhs, const curvePoint<double> &rhs) { return (lhs.getExp() < rhs.getExp()); }


Now change the class as follows (again, by adding the underlined bits):
public:
          void setValue(_Ty p) { _mValue = p; }
          _Ty getValue() const { return _mValue; }
          void setDate(Date d) { _mDate = d; }
          inline void setDate(long d) { _mDate = d; }
          Date getDate() const { return _mDate; }
          void setExp(Date d) { _expDate = d; }
          void setExp(long d) { _expDate = d; }
          Date getExp() const { return _expDate; }


Steve

QuestionUser Defined Message to Windows Service Pin
pratap198021-Jan-09 7:51
pratap198021-Jan-09 7:51 
AnswerRe: User Defined Message to Windows Service Pin
Iain Clarke, Warrior Programmer21-Jan-09 9:23
Iain Clarke, Warrior Programmer21-Jan-09 9:23 
QuestionProblem while opening eml file with attachmenseml file with Pin
sandeepkgsmarty21-Jan-09 6:37
sandeepkgsmarty21-Jan-09 6:37 
QuestionOnMouseWheel Pin
sabapathy_8021-Jan-09 4:15
sabapathy_8021-Jan-09 4:15 
AnswerRe: OnMouseWheel Pin
Stuart Dootson21-Jan-09 4:23
professionalStuart Dootson21-Jan-09 4:23 
QuestionHow can enable child window's MenuBar Pin
Abhijit D. Babar21-Jan-09 3:48
Abhijit D. Babar21-Jan-09 3:48 
Questionhotkey for menu item not showing Pin
sabapathy_8021-Jan-09 2:57
sabapathy_8021-Jan-09 2:57 
AnswerRe: hotkey for menu item not showing Pin
Iain Clarke, Warrior Programmer21-Jan-09 3:34
Iain Clarke, Warrior Programmer21-Jan-09 3:34 
GeneralRe: hotkey for menu item not showing Pin
sabapathy_8021-Jan-09 4:07
sabapathy_8021-Jan-09 4:07 
GeneralRe: hotkey for menu item not showing Pin
Iain Clarke, Warrior Programmer21-Jan-09 4:19
Iain Clarke, Warrior Programmer21-Jan-09 4:19 
Questionnon dependent names in template base class Pin
f_jo21-Jan-09 2:45
f_jo21-Jan-09 2:45 
AnswerRe: non dependent names in template base class Pin
Sarath C21-Jan-09 3:18
Sarath C21-Jan-09 3:18 
AnswerRe: non dependent names in template base class Pin
Stuart Dootson21-Jan-09 3:45
professionalStuart Dootson21-Jan-09 3:45 
GeneralRe: non dependent names in template base class Pin
f_jo21-Jan-09 5:40
f_jo21-Jan-09 5:40 
GeneralRe: non dependent names in template base class Pin
f_jo21-Jan-09 6:43
f_jo21-Jan-09 6:43 
GeneralRe: non dependent names in template base class Pin
Stuart Dootson21-Jan-09 7:48
professionalStuart Dootson21-Jan-09 7:48 
QuestionHow to _properly_ pass a string from a DLL to the App? Pin
OwenBurnett21-Jan-09 2:43
OwenBurnett21-Jan-09 2:43 

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.