Click here to Skip to main content
15,905,322 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
GeneralRe: Another 8001010e question! Pin
Kannan Ramanathan11-Jul-09 18:23
Kannan Ramanathan11-Jul-09 18:23 
GeneralRe: Another 8001010e question! Pin
Stuart Dootson11-Jul-09 23:37
professionalStuart Dootson11-Jul-09 23:37 
GeneralRe: Another 8001010e question! Pin
Kannan Ramanathan11-Jul-09 23:43
Kannan Ramanathan11-Jul-09 23:43 
GeneralRe: Another 8001010e question! Pin
Stuart Dootson11-Jul-09 23:47
professionalStuart Dootson11-Jul-09 23:47 
GeneralRe: Another 8001010e question! Pin
Kannan Ramanathan12-Jul-09 1:57
Kannan Ramanathan12-Jul-09 1:57 
GeneralRe: Another 8001010e question! Pin
Stuart Dootson12-Jul-09 5:48
professionalStuart Dootson12-Jul-09 5:48 
GeneralRe: Another 8001010e question! Pin
Member 348023215-Jul-09 0:51
Member 348023215-Jul-09 0:51 
QuestionVC6 problem: locale loc(locale::classic(), new myfac) Pin
John R. Shaw9-Jul-09 20:51
John R. Shaw9-Jul-09 20:51 
Yes I am still supporting VC6 in this project and it has to be cross platform.

Buried in the VC6 MSDN Library under “locale::facet” is the line
locale loc(locale::classic(), new myfac);”.

Which is correct for latter versions of the MS STL, but there is no locale constructor that takes a locale and a facet defined in the VC6 STL version of locale.

My unsatisfactory workaround is:
#ifdef _ADDFAC // Dinkumware macro
    std::locale myLoc = std::_ADDFAC(std::locale::classic(), new my_codecvt);
#else
    std::locale myLoc = std::locale(std::locale::classic(), new my_codecvt);
#endif


Do you have a better one?

INTP
"Program testing can be used to show the presence of bugs, but never to show their absence."Edsger Dijkstra

AnswerRe: VC6 problem: locale loc(locale::classic(), new myfac) Pin
Stuart Dootson9-Jul-09 22:01
professionalStuart Dootson9-Jul-09 22:01 
QuestionHow to hide Standard Toolbar button in IE Pin
am 20098-Jul-09 22:40
am 20098-Jul-09 22:40 
Question32bit client talking to a 64bit local server Pin
Kannan Ramanathan4-Jul-09 3:58
Kannan Ramanathan4-Jul-09 3:58 
AnswerRe: 32bit client talking to a 64bit local server Pin
Kannan Ramanathan4-Jul-09 4:00
Kannan Ramanathan4-Jul-09 4:00 
AnswerRe: 32bit client talking to a 64bit local server Pin
Stuart Dootson4-Jul-09 4:50
professionalStuart Dootson4-Jul-09 4:50 
GeneralRe: 32bit client talking to a 64bit local server Pin
Kannan Ramanathan4-Jul-09 5:32
Kannan Ramanathan4-Jul-09 5:32 
GeneralRe: 32bit client talking to a 64bit local server Pin
Stuart Dootson4-Jul-09 5:35
professionalStuart Dootson4-Jul-09 5:35 
GeneralRe: 32bit client talking to a 64bit local server Pin
Kannan Ramanathan4-Jul-09 7:25
Kannan Ramanathan4-Jul-09 7:25 
GeneralRe: 32bit client talking to a 64bit local server Pin
Kannan Ramanathan5-Jul-09 3:13
Kannan Ramanathan5-Jul-09 3:13 
GeneralRe: 32bit client talking to a 64bit local server Pin
Kannan Ramanathan5-Jul-09 19:43
Kannan Ramanathan5-Jul-09 19:43 
GeneralRe: 32bit client talking to a 64bit local server Pin
Stuart Dootson5-Jul-09 21:55
professionalStuart Dootson5-Jul-09 21:55 
GeneralRe: 32bit client talking to a 64bit local server Pin
Kannan Ramanathan5-Jul-09 23:17
Kannan Ramanathan5-Jul-09 23:17 
QuestionUsing microsoft STL and STLport in same project Pin
Vishal Kumar Soni30-Jun-09 0:02
Vishal Kumar Soni30-Jun-09 0:02 
AnswerRe: Using microsoft STL and STLport in same project Pin
Stuart Dootson30-Jun-09 3:13
professionalStuart Dootson30-Jun-09 3:13 
GeneralRe: Using microsoft STL and STLport in same project Pin
Vishal Kumar Soni30-Jun-09 4:51
Vishal Kumar Soni30-Jun-09 4:51 
GeneralRe: Using microsoft STL and STLport in same project Pin
Stuart Dootson30-Jun-09 4:59
professionalStuart Dootson30-Jun-09 4:59 
GeneralRe: Using microsoft STL and STLport in same project Pin
led mike30-Jun-09 5:01
led mike30-Jun-09 5:01 

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.