Click here to Skip to main content
15,892,005 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Using GetOpenFileName on both Win98 and WinXP Pin
Patcher3214-Oct-09 13:03
Patcher3214-Oct-09 13:03 
GeneralRe: Using GetOpenFileName on both Win98 and WinXP Pin
Ozer Karaagac14-Oct-09 14:57
professionalOzer Karaagac14-Oct-09 14:57 
AnswerRe: Using GetOpenFileName on both Win98 and WinXP Pin
Richard MacCutchan14-Oct-09 22:23
mveRichard MacCutchan14-Oct-09 22:23 
QuestionSorting a list in VC++ Pin
Anderson Jogie14-Oct-09 12:07
Anderson Jogie14-Oct-09 12:07 
AnswerRe: Sorting a list in VC++ Pin
«_Superman_»14-Oct-09 12:54
professional«_Superman_»14-Oct-09 12:54 
GeneralRe: Sorting a list in VC++ Pin
Anderson Jogie15-Oct-09 4:56
Anderson Jogie15-Oct-09 4:56 
AnswerRe: Sorting a list in VC++ Pin
«_Superman_»15-Oct-09 6:31
professional«_Superman_»15-Oct-09 6:31 
GeneralRe: Sorting a list in VC++ Pin
Anderson Jogie19-Oct-09 11:38
Anderson Jogie19-Oct-09 11:38 
Thanks for the insight. I have create a little functor to work with the sort function but getting an error. there is something that I am not doing right. Thanks for your help. Smile | :)


Functor code:
bool RDLTemporaryResource::SortByTime:public std::binary_function<RDLRun*, RDLRun*, bool>
{

bool operator() (RDLRun* a, RDLRun* b) const
{
if( a->GetDepartureTime() < b->GetDepartureTime() )
return 1;
else return 0;
}

}


Compiler error message:
--------------------Configuration: fstool - Win32 Debug--------------------
Compiling...
TEMPRES.CPP
c:\program files\ilps\code\fstool\tempres.cpp(837) : fatal error C1001: INTERNAL COMPILER ERROR
(compiler file 'msc1.cpp', line 1786)
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
Error executing cl.exe.

fstool.dll - 1 error(s), 0 warning(s)
Questionhow to let ado's data import to ms-word and then print Pin
yugiant14-Oct-09 6:15
yugiant14-Oct-09 6:15 
AnswerRe: how to let ado's data import to ms-word and then print Pin
David Crow14-Oct-09 7:35
David Crow14-Oct-09 7:35 
Questionchange code inside function body of dll file, dangerous? Pin
includeh1014-Oct-09 5:58
includeh1014-Oct-09 5:58 
AnswerRe: change code inside function body of dll file, dangerous? Pin
Randor 14-Oct-09 6:54
professional Randor 14-Oct-09 6:54 
AnswerRe: change code inside function body of dll file, dangerous? Pin
Rajesh R Subramanian14-Oct-09 7:49
professionalRajesh R Subramanian14-Oct-09 7:49 
AnswerRe: change code inside function body of dll file, dangerous? Pin
Moak14-Oct-09 9:49
Moak14-Oct-09 9:49 
Questioncalculation error Pin
kbury14-Oct-09 5:13
kbury14-Oct-09 5:13 
AnswerRe: calculation error Pin
CPallini14-Oct-09 5:37
mveCPallini14-Oct-09 5:37 
GeneralRe: calculation error Pin
kbury14-Oct-09 5:43
kbury14-Oct-09 5:43 
GeneralRe: calculation error Pin
CPallini14-Oct-09 7:04
mveCPallini14-Oct-09 7:04 
AnswerRe: calculation error Pin
David Crow14-Oct-09 7:39
David Crow14-Oct-09 7:39 
AnswerRe: calculation error [modified] Pin
Patcher3214-Oct-09 12:52
Patcher3214-Oct-09 12:52 
AnswerRe: calculation error Pin
Luc Pattyn14-Oct-09 13:41
sitebuilderLuc Pattyn14-Oct-09 13:41 
GeneralRe: calculation error Pin
kbury15-Oct-09 5:07
kbury15-Oct-09 5:07 
GeneralRe: calculation error Pin
Luc Pattyn15-Oct-09 5:38
sitebuilderLuc Pattyn15-Oct-09 5:38 
QuestionHow to convert the vbscript to c++ using adsi Pin
raja 414-Oct-09 4:59
raja 414-Oct-09 4:59 
AnswerRe: How to convert the vbscript to c++ using adsi Pin
David Crow15-Oct-09 3:15
David Crow15-Oct-09 3:15 

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.