Click here to Skip to main content
15,924,982 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: C++ - "We don't use STL here" Pin
Chris Losinger24-Jun-05 5:50
professionalChris Losinger24-Jun-05 5:50 
GeneralRe: C++ - "We don't use STL here" Pin
Trollslayer24-Jun-05 4:47
mentorTrollslayer24-Jun-05 4:47 
GeneralRe: C++ - "We don't use STL here" Pin
Kevin McFarlane24-Jun-05 5:42
Kevin McFarlane24-Jun-05 5:42 
Questionh323 connection to Cisco Call Manager 4.1 ? Pin
JankoH23-Jun-05 23:23
JankoH23-Jun-05 23:23 
GeneralCAsyncSocket: Pass the Proxy Pin
f_ika_s23-Jun-05 22:50
f_ika_s23-Jun-05 22:50 
GeneralRe: CAsyncSocket: Pass the Proxy Pin
munawar196823-Jun-05 22:59
munawar196823-Jun-05 22:59 
Generalvector related help Pin
itkid23-Jun-05 22:25
itkid23-Jun-05 22:25 
GeneralRe: vector related help Pin
Cedric Moonen23-Jun-05 22:38
Cedric Moonen23-Jun-05 22:38 
Do something like that:

Suppose the structure is called YourStruct.
The vector is declared like that:
std::vector<YourStruct> YourVector;

To add elements in the vector:
for (int i=0;i<10;i++)
{
YourStruct TestStruct;
// Fill the structure

YourVector.push_back(TestStruct);
}

GeneralIP address Pin
ask_you23-Jun-05 21:25
ask_you23-Jun-05 21:25 
GeneralRe: IP address Pin
ThatsAlok23-Jun-05 21:37
ThatsAlok23-Jun-05 21:37 
GeneralRe: IP address Pin
ask_you23-Jun-05 22:58
ask_you23-Jun-05 22:58 
GeneralAnother Easy Q...About string.. Pin
ana_bahy23-Jun-05 21:20
ana_bahy23-Jun-05 21:20 
GeneralRe: Another Easy Q...About string.. Pin
Cedric Moonen23-Jun-05 21:48
Cedric Moonen23-Jun-05 21:48 
GeneralRe: Another Easy Q...About string.. Pin
ana_bahy23-Jun-05 21:55
ana_bahy23-Jun-05 21:55 
GeneralRe: Another Easy Q...About string.. Pin
David Crow24-Jun-05 2:54
David Crow24-Jun-05 2:54 
Generalconversion confusion... Pin
GDavy23-Jun-05 21:00
GDavy23-Jun-05 21:00 
GeneralRe: conversion confusion...[Modified] Pin
ThatsAlok23-Jun-05 21:20
ThatsAlok23-Jun-05 21:20 
GeneralRe: conversion confusion...[Modified] Pin
GDavy23-Jun-05 21:57
GDavy23-Jun-05 21:57 
GeneralRe: conversion confusion... Pin
Weiye Chen23-Jun-05 21:26
Weiye Chen23-Jun-05 21:26 
GeneralRe: conversion confusion... Pin
GDavy23-Jun-05 22:20
GDavy23-Jun-05 22:20 
GeneralRe: conversion confusion... Pin
Rage23-Jun-05 21:51
professionalRage23-Jun-05 21:51 
GeneralRe: conversion confusion... Pin
GDavy23-Jun-05 22:03
GDavy23-Jun-05 22:03 
GeneralRe: conversion confusion... Pin
mekanoo23-Jun-05 22:33
mekanoo23-Jun-05 22:33 
GeneralRe: conversion confusion... Pin
mekanoo23-Jun-05 22:53
mekanoo23-Jun-05 22:53 
GeneralRe: conversion confusion... Pin
GDavy23-Jun-05 23:21
GDavy23-Jun-05 23:21 

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.