Click here to Skip to main content
15,897,273 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: What it actually means... ! Pin
Rage25-Jan-06 4:18
professionalRage25-Jan-06 4:18 
GeneralRe: What it actually means... ! Pin
toxcct25-Jan-06 4:24
toxcct25-Jan-06 4:24 
GeneralRe: What it actually means... ! Pin
Rage25-Jan-06 4:27
professionalRage25-Jan-06 4:27 
GeneralRe: What it actually means... ! Pin
Rage25-Jan-06 4:55
professionalRage25-Jan-06 4:55 
QuestionInt in CString and Array question Pin
FARGORE24-Jan-06 23:19
FARGORE24-Jan-06 23:19 
AnswerRe: Int in CString and Array question Pin
benjymous24-Jan-06 23:28
benjymous24-Jan-06 23:28 
AnswerRe: Int in CString and Array question Pin
Owner drawn24-Jan-06 23:28
Owner drawn24-Jan-06 23:28 
AnswerRe: Int in CString and Array question Pin
jhwurmbach25-Jan-06 1:28
jhwurmbach25-Jan-06 1:28 
FARGORE wrote:
I would like to place or append an Int value to a CString


I would use boost[^]::lexical_cast or its verbose equivalent, std::ostringstr
int i = 10;<br />
std::ostringstr stream;<br />
stream << i;<br />
CString s( stream.str().c_str());


Using CString is OK, but there is nothing wrong with using the C++ builtin std::string


FARGORE wrote:
is there a way of making an array with infinite variables


I would personally use a std::vector of boost[^]<code<code>>::shared_ptr. This way, you can approach infinite sufficiently for almost all practical means.
Be sure not to mis-use the std::autoptr with collections of any kind!


"We trained hard, but it seemed that every time we were beginning to form up into teams we would be reorganised. I was to learn later in life that we tend to meet any new situation by reorganising: and a wonderful method it can be for creating the illusion of progress, while producing confusion, inefficiency and demoralisation."

-- Caius Petronius, Roman Consul, 66 A.D.

QuestionActive Explorer window Pin
Anil_vvs24-Jan-06 23:00
Anil_vvs24-Jan-06 23:00 
AnswerRe: Active Explorer window Pin
David Crow25-Jan-06 4:20
David Crow25-Jan-06 4:20 
QuestionWbemuuid.lib Pin
kelprinc24-Jan-06 22:26
kelprinc24-Jan-06 22:26 
AnswerRe: Wbemuuid.lib Pin
Steve S24-Jan-06 23:34
Steve S24-Jan-06 23:34 
GeneralRe: Wbemuuid.lib Pin
kelprinc24-Jan-06 23:45
kelprinc24-Jan-06 23:45 
QuestionMenu ID Pin
Hans Ruck24-Jan-06 22:11
Hans Ruck24-Jan-06 22:11 
AnswerRe: Menu ID Pin
toxcct24-Jan-06 22:30
toxcct24-Jan-06 22:30 
GeneralRe: Menu ID Pin
Hans Ruck24-Jan-06 22:33
Hans Ruck24-Jan-06 22:33 
GeneralRe: Menu ID Pin
toxcct24-Jan-06 22:43
toxcct24-Jan-06 22:43 
GeneralRe: Menu ID Pin
Hans Ruck24-Jan-06 23:58
Hans Ruck24-Jan-06 23:58 
QuestionRestarting the Application Pin
Ali Tavakol24-Jan-06 21:30
Ali Tavakol24-Jan-06 21:30 
AnswerRe: Restarting the Application Pin
M.Mehrdad.M24-Jan-06 21:57
M.Mehrdad.M24-Jan-06 21:57 
GeneralRe: Restarting the Application Pin
Ali Tavakol26-Jan-06 6:24
Ali Tavakol26-Jan-06 6:24 
GeneralRe: Restarting the Application Pin
M.Mehrdad.M27-Jan-06 20:04
M.Mehrdad.M27-Jan-06 20:04 
QuestionRe: Restarting the Application Pin
Owner drawn24-Jan-06 22:20
Owner drawn24-Jan-06 22:20 
AnswerRe: Restarting the Application Pin
Ali Tavakol26-Jan-06 6:21
Ali Tavakol26-Jan-06 6:21 
GeneralRe: Restarting the Application Pin
Owner drawn26-Jan-06 16:46
Owner drawn26-Jan-06 16:46 

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.