Click here to Skip to main content
15,897,315 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
GeneralRe: (ATL/COM/MFC/C++) Q about IE programming Pin
Douglas Troy15-Jul-05 5:33
Douglas Troy15-Jul-05 5:33 
GeneralRe: (ATL/COM/MFC/C++) Q about IE programming Pin
Member 212103815-Jul-05 20:23
Member 212103815-Jul-05 20:23 
Questionwhat's the right way to do this? Pin
HeartFriend14-Jul-05 22:31
HeartFriend14-Jul-05 22:31 
AnswerRe: what's the right way to do this? Pin
Douglas Troy15-Jul-05 5:40
Douglas Troy15-Jul-05 5:40 
GeneralRe: what's the right way to do this? Pin
Anonymous15-Jul-05 6:05
Anonymous15-Jul-05 6:05 
GeneralRe: what's the right way to do this? Pin
Douglas Troy15-Jul-05 6:14
Douglas Troy15-Jul-05 6:14 
Generalstd::cin and unbuffering (noncanonical input) Pin
Harold Bamford14-Jul-05 8:08
Harold Bamford14-Jul-05 8:08 
GeneralVector class is missing 'rerase' Pin
ICantChangeMyAcct13-Jul-05 9:18
ICantChangeMyAcct13-Jul-05 9:18 
If I want to process a std::vector using a reverse_iterator (because the element I'm looking for is likely to be near the end), how do I remove the element from the vector after I locate it?

typedef std::vector<GROUP_HANDLE> GroupHandleList;
GroupHandleList::reverse_iterator i;
bool done = false;
for ( i = GHList->rbegin(); !done && i != GHList->rend(); i++ )
{
GROUP_HANDLE gi = *i;
if ( gi == hGroup )
{
// ?? I want to call:
// GHList->erase(i);
// but that requires an 'iterator', not a 'reverse_iterator'
done = true;
}
}

GeneralRe: Vector class is missing 'rerase' Pin
Nish Nishant13-Jul-05 9:48
sitebuilderNish Nishant13-Jul-05 9:48 
GeneralRe: Vector class is missing 'rerase' Pin
Roland Pibinger13-Jul-05 12:43
Roland Pibinger13-Jul-05 12:43 
GeneralRe: Vector class is missing 'rerase' Pin
Nemanja Trifunovic14-Jul-05 2:19
Nemanja Trifunovic14-Jul-05 2:19 
GeneralRe: Vector class is missing 'rerase' Pin
Rob Caldecott14-Jul-05 5:25
Rob Caldecott14-Jul-05 5:25 
GeneralBoost Pin
Rob Caldecott11-Jul-05 21:14
Rob Caldecott11-Jul-05 21:14 
GeneralRe: Boost Pin
Nemanja Trifunovic12-Jul-05 3:17
Nemanja Trifunovic12-Jul-05 3:17 
GeneralRe: Boost Pin
guypremont12-Jul-05 3:31
guypremont12-Jul-05 3:31 
GeneralRe: Boost Pin
Stuart Dootson12-Jul-05 8:30
professionalStuart Dootson12-Jul-05 8:30 
GeneralRe: Boost Pin
Rob Caldecott12-Jul-05 11:02
Rob Caldecott12-Jul-05 11:02 
GeneralRe: Boost Pin
CP Visitor12-Jul-05 22:41
CP Visitor12-Jul-05 22:41 
GeneralRe: Boost Pin
Rob Caldecott12-Jul-05 22:51
Rob Caldecott12-Jul-05 22:51 
GeneralRe: Boost Pin
CP Visitor13-Jul-05 6:28
CP Visitor13-Jul-05 6:28 
GeneralRe: Boost Pin
Rob Caldecott13-Jul-05 7:28
Rob Caldecott13-Jul-05 7:28 
GeneralRe: Boost Pin
Joaquín M López Muñoz12-Jul-05 11:27
Joaquín M López Muñoz12-Jul-05 11:27 
GeneralRe: Boost Pin
Nemanja Trifunovic12-Jul-05 12:49
Nemanja Trifunovic12-Jul-05 12:49 
GeneralRe: Boost Pin
Nish Nishant13-Jul-05 19:46
sitebuilderNish Nishant13-Jul-05 19:46 
GeneralRe: Boost Pin
Stuart Dootson13-Jul-05 21:36
professionalStuart Dootson13-Jul-05 21:36 

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.