Click here to Skip to main content
15,793,139 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Why is my EXE so big? Pin
Peter Weyzen21-Jan-09 19:15
Peter Weyzen21-Jan-09 19:15 
GeneralRe: Why is my EXE so big? Pin
Saurabh.Garg21-Jan-09 22:44
Saurabh.Garg21-Jan-09 22:44 
AnswerRe: Why is my EXE so big? Pin
Naveen21-Jan-09 17:47
Naveen21-Jan-09 17:47 
AnswerRe: Why is my EXE so big? Pin
Code-o-mat21-Jan-09 23:54
Code-o-mat21-Jan-09 23:54 
GeneralRe: Why is my EXE so big? Pin
Peter Weyzen22-Jan-09 6:57
Peter Weyzen22-Jan-09 6:57 
QuestionBinary Predicate for Templated Class Pin
mjackson1121-Jan-09 9:27
mjackson1121-Jan-09 9:27 
QuestionRe: Binary Predicate for Templated Class Pin
led mike21-Jan-09 11:31
led mike21-Jan-09 11:31 
AnswerRe: Binary Predicate for Templated Class Pin
Dan21-Jan-09 11:32
Dan21-Jan-09 11:32 
You can try

template< typename T >
struct curve_lt : public binary_function <T, T, bool> 
{
     bool operator()( const T &rhs, const T &lhs )
     {
          return rhs.getDate() < lhs.getData();
     }
};
......
i = lower_bound(vector.begin(), vector.end(), &c, curve_lt());

AnswerRe: Binary Predicate for Templated Class Pin
mjackson1121-Jan-09 12:14
mjackson1121-Jan-09 12:14 
AnswerRe: Binary Predicate for Templated Class Pin
Stephen Hewitt21-Jan-09 17:14
Stephen Hewitt21-Jan-09 17:14 
QuestionUser Defined Message to Windows Service Pin
pratap198021-Jan-09 8:51
pratap198021-Jan-09 8:51 
AnswerRe: User Defined Message to Windows Service Pin
Iain Clarke, Warrior Programmer21-Jan-09 10:23
Iain Clarke, Warrior Programmer21-Jan-09 10:23 
QuestionProblem while opening eml file with attachmenseml file with Pin
sandeepkgsmarty21-Jan-09 7:37
sandeepkgsmarty21-Jan-09 7:37 
QuestionOnMouseWheel Pin
sabapathy_8021-Jan-09 5:15
sabapathy_8021-Jan-09 5:15 
AnswerRe: OnMouseWheel Pin
Stuart Dootson21-Jan-09 5:23
professionalStuart Dootson21-Jan-09 5:23 
QuestionHow can enable child window's MenuBar Pin
Abhijit D. Babar21-Jan-09 4:48
Abhijit D. Babar21-Jan-09 4:48 
Questionhotkey for menu item not showing Pin
sabapathy_8021-Jan-09 3:57
sabapathy_8021-Jan-09 3:57 
AnswerRe: hotkey for menu item not showing Pin
Iain Clarke, Warrior Programmer21-Jan-09 4:34
Iain Clarke, Warrior Programmer21-Jan-09 4:34 
GeneralRe: hotkey for menu item not showing Pin
sabapathy_8021-Jan-09 5:07
sabapathy_8021-Jan-09 5:07 
GeneralRe: hotkey for menu item not showing Pin
Iain Clarke, Warrior Programmer21-Jan-09 5:19
Iain Clarke, Warrior Programmer21-Jan-09 5:19 
Questionnon dependent names in template base class Pin
f_jo21-Jan-09 3:45
f_jo21-Jan-09 3:45 
AnswerRe: non dependent names in template base class Pin
Sarath C21-Jan-09 4:18
Sarath C21-Jan-09 4:18 
AnswerRe: non dependent names in template base class Pin
Stuart Dootson21-Jan-09 4:45
professionalStuart Dootson21-Jan-09 4:45 
GeneralRe: non dependent names in template base class Pin
f_jo21-Jan-09 6:40
f_jo21-Jan-09 6:40 
GeneralRe: non dependent names in template base class Pin
f_jo21-Jan-09 7:43
f_jo21-Jan-09 7: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.