Click here to Skip to main content
15,881,380 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
AnswerRe: boost::regex_match Pin
Stephen Hewitt25-Apr-11 19:23
Stephen Hewitt25-Apr-11 19:23 
GeneralRe: boost::regex_match Pin
Meisterzunge26-Apr-11 5:06
Meisterzunge26-Apr-11 5:06 
GeneralRe: boost::regex_match Pin
Stephen Hewitt27-Apr-11 5:52
Stephen Hewitt27-Apr-11 5:52 
GeneralRe: boost::regex_match Pin
Meisterzunge28-Apr-11 6:06
Meisterzunge28-Apr-11 6:06 
GeneralRe: boost::regex_match Pin
Stephen Hewitt29-Apr-11 4:57
Stephen Hewitt29-Apr-11 4:57 
Questionresize multiple dimensional vector array in while loop Pin
cy163@hotmail.com19-Apr-11 5:03
cy163@hotmail.com19-Apr-11 5:03 
QuestionHow to resize multiple dimensional vector array [modified] Pin
cy163@hotmail.com18-Apr-11 4:46
cy163@hotmail.com18-Apr-11 4:46 
AnswerRe: How to resize multiple dimensional vector array Pin
Cool_Dev18-Apr-11 22:50
Cool_Dev18-Apr-11 22:50 
You want Var to grow to 5 and each element in Var to grow to 6. If i got it correctly, this can be a solution.

vector<vector<string> > Var(1, vector<string>(1));
Var.resize(5);
for (int i=0; i<5; ++i)
{
  Var[i].resize(6);
}

QuestionSize of executable doubles since Windows Update on April 14, 2011 Pin
Big Art16-Apr-11 12:31
Big Art16-Apr-11 12:31 
AnswerRe: Size of executable doubles since Windows Update on April 14, 2011 Pin
barneyman22-Apr-11 0:11
barneyman22-Apr-11 0:11 
GeneralRe: Size of executable doubles since Windows Update on April 14, 2011 Pin
Big Art22-Apr-11 17:05
Big Art22-Apr-11 17:05 
AnswerRe: Size of executable doubles since Windows Update on April 14, 2011 Pin
Hans Dietrich26-Apr-11 8:06
mentorHans Dietrich26-Apr-11 8:06 
GeneralRe: Size of executable doubles since Windows Update on April 14, 2011 Pin
Big Art1-Jul-11 10:51
Big Art1-Jul-11 10:51 
AnswerRe: Size of executable doubles since Windows Update on April 14, 2011 Pin
Hans Dietrich1-Jul-11 14:25
mentorHans Dietrich1-Jul-11 14:25 
QuestionProblem creating instance using com smart pointer. Pin
Dhadhan13-Apr-11 18:35
Dhadhan13-Apr-11 18:35 
Questionhow can I draw one Line in different windows? Pin
caiguosen11-Apr-11 4:00
caiguosen11-Apr-11 4:00 
AnswerRe: how can I draw one Line in different windows? Pin
Richard MacCutchan11-Apr-11 4:20
mveRichard MacCutchan11-Apr-11 4:20 
QuestionWindows Media Player Plugin - Property Page Issue Pin
dexter7505-Apr-11 18:56
dexter7505-Apr-11 18:56 
QuestionHandling LVN_DELETEITEM in CListViewCtrl subclass Pin
Philipp Kursawe29-Mar-11 21:09
Philipp Kursawe29-Mar-11 21:09 
QuestionUsage of reference Pin
Krishnakumartg29-Mar-11 1:42
Krishnakumartg29-Mar-11 1:42 
AnswerRe: Usage of reference Pin
Richard MacCutchan29-Mar-11 3:22
mveRichard MacCutchan29-Mar-11 3:22 
GeneralRe: Usage of reference Pin
Krishnakumartg29-Mar-11 6:12
Krishnakumartg29-Mar-11 6:12 
GeneralRe: Usage of reference Pin
Richard MacCutchan29-Mar-11 6:25
mveRichard MacCutchan29-Mar-11 6:25 
GeneralRe: Usage of reference Pin
Krishnakumartg29-Mar-11 6:30
Krishnakumartg29-Mar-11 6:30 
GeneralRe: Usage of reference Pin
Richard MacCutchan29-Mar-11 6:54
mveRichard MacCutchan29-Mar-11 6:54 

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.