
- 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, 06:06 AM
An alternative to what 2kaud suggests is to go for an object-oriented design. In that case, you would replace T with a base class type. Then you...
6 replies | 85 view(s)
-
Today, 04:45 AM
In which case you can't use templates.
If the compiler doesn't know the type at compile time, you're very limited as to what you can do. C++ is a...
6 replies | 85 view(s)
-
Today, 04:14 AM
Hi,
Well, I don't know what type it will be, hence the type field inside the structuyou.
I will know it at run-time when I get the row.
...
6 replies | 85 view(s)
-
Today, 02:13 AM
Hi,
error C3203: unspecialized class template can't be used as a template argument for template parameter '_Ty', expected a real type
...
6 replies | 85 view(s)
-
Today, 02:13 AM
You must specify the typename T of TableRow. Say you want it to be an int you do,
std::vector<TableRow<int>> row;
6 replies | 85 view(s)
-
Today, 01:59 AM
What error do you get?
6 replies | 85 view(s)
-
Yesterday, 11:01 PM
Hi, ALL,
What would be the best solution for the following problem:
Let's say I have a table in the database.
And in my C++ code I have a...
6 replies | 85 view(s)
-
Yesterday, 08:35 PM
Hello everyone. I am just a beginner programmer.
I am learning recursion and dynamic programming.
I realized that even for Fibonacci numbers,...
0 replies | 37 view(s)
-
Yesterday, 12:04 PM
auto itr = std::find_if......
The scope of this itr only exists until the block closing }. It does not extend to the while clause. The itr used...
2 replies | 71 view(s)
-
Yesterday, 11:35 AM
You redefine the auto itr within the do/while loop.
Is it by design? :confused:
2 replies | 71 view(s)
-
Yesterday, 08:51 AM
Hello,
std::map<int, bool > m_TacToAssignFlag;
auto itr = m_TacToAssignFlag.begin();
do
{
################
2 replies | 71 view(s)
-
Yesterday, 07:45 AM
No, that's not the problem.... I was thinking more about all the other functions (i.e. the hundreds of functions that'll be common in both DLL's). I...
5 replies | 112 view(s)
-
Yesterday, 07:22 AM
Where was the constellation of the planets and what was the phase of the moon when this event took place? :d
I'm assuming because of the previous...
5 replies | 112 view(s)
-
Yesterday, 05:39 AM
Thanks guys - my original description was a bit simplified so let me explain what's actually happening...
I'm building some 3rd party DLLs which...
5 replies | 112 view(s)
-
Yesterday, 05:17 AM
Use LoadLibrary()/GetProcAddress() to specify which one to use.
5 replies | 112 view(s)
-
Yesterday, 01:54 AM
If using C++, use different namespaces.
5 replies | 112 view(s)
-
February 27th, 2021, 11:54 AM
You are welcome! :)
Don't worry! I have more than enough rating points! :d
14 replies | 723 view(s)
-
February 27th, 2021, 11:47 AM
Many thanks Victor.... under Configuration Properties->Advanced I need to select 64-bit (x64) as my preferred build tool architecture (I'm guessing...
14 replies | 723 view(s)
-
February 27th, 2021, 10:45 AM
I never saw this error message.
However the others did:...
14 replies | 723 view(s)
-
February 27th, 2021, 09:54 AM
Groan - having accepted that I'll just have to tolerate these problems in my Debug build, I've hit an even bigger problem now with the Release build...
14 replies | 723 view(s)
-
February 27th, 2021, 08:29 AM
Let's assume I'm building a program which links to 2 libraries:- x.lib and y.lib
And let's assume they both libs happen to contain a function with...
5 replies | 112 view(s)
-
February 24th, 2021, 01:13 AM
Did you even read the post?
$ cat foo.c
#include <stdio.h>
int main ( ) {
typedef unsigned int frac;
frac one = 0x08000000; // a...
3 replies | 401 view(s)
-
February 23rd, 2021, 12:23 PM
For differences between the various versions of VS2019, see...
25 replies | 766 view(s)
-
February 23rd, 2021, 12:05 PM
I use the Enterprise.
Microsoft Visual Studio Enterprise 2019
Version 16.8.4
25 replies | 766 view(s)
-
February 23rd, 2021, 07:26 AM
Something just occurred to me... are you both using the Community Edition or one of the paid-for versions? Maybe it's just a disabled feature in the...
25 replies | 766 view(s)
-
February 23rd, 2021, 04:51 AM
Heh. Rather, I'm just a very lazy person. :D
6 replies | 3833 view(s)
-
February 23rd, 2021, 04:50 AM
Maybe you asked it not enough precisely? :rolleyes:
6 replies | 3833 view(s)
|
Click Here to Expand Forum to Full Width
On-Demand Webinars (sponsored)
|