
- Home
- Activity Stream
Activity Stream
New Activity ()
Please reload this page to view the 200+ new activity items that have been created.
-
Older Activity
-
Today, 02:16 PM
Yes, Arjay! I know it.
Frankly, I miss him...
Do you have some info about Guido?
3 replies | 58 view(s)
-
Today, 02:04 PM
Probably the least painful approach is to incrementally keep production code to the current version or at least cuurent minus 1. Yeah, every few...
11 replies | 224 view(s)
-
Today, 01:53 PM
Victor' that was a well written post from Guido.
3 replies | 58 view(s)
-
Today, 12:57 PM
I just gave that a try here but it still gives me C3848 :cry:
Is that something that needs to get fed back to Microsoft somehow?
11 replies | 224 view(s)
-
Today, 12:23 PM
https://forums.codeguru.com/showthread.php?366302-Visual-C-General-Can-you-help-me-with-my-homework-assignment&p=1279572&highlight=homework#post127957...
3 replies | 58 view(s)
-
Today, 09:20 AM
In the following questions, the set of input data is based on 1171234 The set of numbers you will extract is as follows: N1 = 1st digit; N2 up to N7...
3 replies | 58 view(s)
-
Today, 05:55 AM
Thanks for update. I remember this mess now. We went through the conversion from C++98 with VS2012/2013. Nightmare!
re the set comparator. It...
11 replies | 224 view(s)
-
Yesterday, 10:19 AM
I am trying to convert an existing project with two wars , (previously using internal build )presentation and business into maven
I don’t know...
0 replies | 62 view(s)
-
Yesterday, 09:51 AM
My program opens an excel sheet and adds the data in the cell in a textbox
However, two of the columns consists of Date and the other Time.
The...
0 replies | 64 view(s)
-
January 22nd, 2021, 10:48 AM
I found a list of useful solutions at Stackoverflow.
Solution #4 is the older version that uses a struct (essentially what used to work okay with...
11 replies | 224 view(s)
-
January 22nd, 2021, 09:28 AM
Is the window called Autos in the screenshot below where I ought to focus on and should I then expand the elements, e.g., d, d.line. is, here, for...
6 replies | 164 view(s)
-
January 22nd, 2021, 08:45 AM
Yes - and to watch the contents of the variables. Not only do you get to understand the code, you also get to debug it to make sure it's working as...
6 replies | 164 view(s)
-
January 22nd, 2021, 08:21 AM
And by using the debugger the intention is to run and follow the control in the code by F10 & F11 in VS, right?
I'm sorry that I can't give you a...
6 replies | 164 view(s)
-
January 22nd, 2021, 08:16 AM
Nope - I just looked at the code. :)
6 replies | 164 view(s)
-
January 22nd, 2021, 08:06 AM
Ow ****, ln->begin() equals lines.begin()->begin() that is, it pointes to the first element (char) of the vector, and ln->end() points to one beyond...
6 replies | 164 view(s)
-
January 22nd, 2021, 06:07 AM
Yesterday I tried removing the Playlist elements and replacing them with a simpler type (int) - but I was quite tired by that stage! I did make it...
11 replies | 224 view(s)
-
January 22nd, 2021, 04:43 AM
Use the debugger to trace through the code to see what is happening and the contents of the variables. Then you'll see exactly.
if (pos ==...
6 replies | 164 view(s)
-
January 22nd, 2021, 04:36 AM
Just a quick question. You are using the latest version of boost when compiling with VS2019 - not the old version used with VS005?
I don't...
11 replies | 224 view(s)
-
January 21st, 2021, 03:55 PM
Hi all,
Here's a code using a list of vectors to read a text terminated by ctrl+z and then print it all in the same order. The problem is that I...
6 replies | 164 view(s)
-
January 21st, 2021, 12:57 PM
Re post #3.
You're not inserting an int to a set of int. The set isn't a set of int - but a set of shared_ptr<list<int>> - which is a very...
11 replies | 224 view(s)
-
January 21st, 2021, 12:17 PM
Going back to the original problem, I just modified the code and realised something...
static void
get_id_sorted_playlists (const List&...
11 replies | 224 view(s)
-
January 21st, 2021, 10:52 AM
I'm not sure what's happening in the original code - but in my simplified version...
id_sorted_ints.insert(*i);
insert() seems to be expecting...
11 replies | 224 view(s)
-
January 21st, 2021, 09:18 AM
Thanks 2kaud - I tried removing const and also changing to cbegin() / cend() etc but nothing seemed to help.
For testing purposes I've now changed...
11 replies | 224 view(s)
-
January 21st, 2021, 07:55 AM
I suspect that .insert() doesn't want a const argument. Try making i ::iterator instead of ::const_iterator. Also, as .begin()/.end() are used rather...
11 replies | 224 view(s)
-
January 21st, 2021, 07:41 AM
I'm updating some code that previously built okay with VS2005:-
struct id_compare
{
bool operator()(const boost::shared_ptr<Playlist>& p1,...
11 replies | 224 view(s)
-
January 21st, 2021, 05:01 AM
It's something I only need to do temporarily (for debugging)
2 replies | 111 view(s)
-
January 21st, 2021, 04:32 AM
Dont. See https://stackoverflow.com/questions/55687044/can-i-take-the-address-of-a-function-defined-in-standard-library
2 replies | 111 view(s)
-
January 21st, 2021, 03:54 AM
Is it possible to create a pointer to a template function - e.g. if I had a std::list of ints and I wanted a pointer to its "unique" member :-
...
2 replies | 111 view(s)
-
January 19th, 2021, 08:29 AM
The /bigobj applies to the number of sections in the generated .obj file. So /bigobj would usually be applied to the project properties - not an...
3 replies | 188 view(s)
-
January 19th, 2021, 07:45 AM
Thanks 2kaud, that seems to fix it. BTW... as it happens, the module I'm building is a DLL. At the moment, I've only specified /bigobj for that one...
3 replies | 188 view(s)
|
Click Here to Expand Forum to Full Width
On-Demand Webinars (sponsored)
|