Search:
Type: Posts; User: VictorN
Search:
Search took 2.22 seconds.
-
February 23rd, 2021, 12:05 PM
I use the Enterprise.
Microsoft Visual Studio Enterprise 2019
Version 16.8.4
-
February 23rd, 2021, 04:50 AM
Maybe you asked it not enough precisely? :rolleyes:
-
February 23rd, 2021, 04:47 AM
Yeah! I also already saw the similar behavior of some C-Runtime functions. :(
-
February 22nd, 2021, 05:44 AM
-
February 21st, 2021, 10:38 AM
Just copy the GetProjectFullPath declaration and paste it at the begin of your MyConfig.cpp file.
-
February 20th, 2021, 06:37 AM
John, did you try to install the Windows 10 SDK (10.0.19041.0) instead?
-
February 19th, 2021, 09:25 AM
You are of course correct. Is is the MS feature.
I have added this info just because this is
So Visual C++ means "it is Microsoft specific" ;)
-
February 19th, 2021, 08:32 AM
Some additional info:
There is also VARIANT_BOOL type.
For this type the "true" value VARIANT_TRUE is defined as 0xFFFF
and the "false" one VARIANT_FALSE as 0x0000
-
February 19th, 2021, 05:51 AM
Well 2kaud was right.
true value is 0x01, not 0xFF.
I was wrong. Sorry! :blush:
-
February 19th, 2021, 02:36 AM
Microsoft compiler represents bool values as one-byte values being set
either to 0x00 (false)
or to 0xFF (true)
So you can test all the three combination to check whether it works.
How is boll...
-
February 17th, 2021, 09:47 AM
To launch the Repair option for VS2019 you should start the VS Installer, then click the dropbox More and select Repair in context menu.
35948
-
February 17th, 2021, 08:17 AM
I'm not sure it could help, but try to play with the SetErrorMode function
-
February 17th, 2021, 06:38 AM
From MSDN:
So never trust the GetLastError return value if the API call succeeds!
-
February 16th, 2021, 05:44 AM
Hi John, as far as I could find here:
Also have a look at
https://social.msdn.microsoft.com/Forums/vstudio/en-US/483024f8-4d35-4cfc-ab01-27f37b0b0379/source-for-attribute?forum=vcgeneral
-
February 14th, 2021, 01:40 PM
Are you sure the OP is still waiting (for almost 10 years!) for your link? :confused::rolleyes:
-
February 13th, 2021, 03:29 AM
-
February 12th, 2021, 11:53 AM
Yes, of course! See https://forums.codeguru.com/misc.php?do=bbcode#code
-
February 11th, 2021, 03:55 PM
Well, did you try LoadLibrary/GetProcAddress?
And there is another interesting resource: https://www.xspdf.com/resolution/2263630.html
-
February 10th, 2021, 02:17 PM
Did you try using GetProcAddress?
-
February 10th, 2021, 09:49 AM
I am not sure it is possible.
Look at the General Properties -> C++ Language Standard
-
February 9th, 2021, 01:00 PM
Could you share your solution?
-
February 9th, 2021, 09:25 AM
Hi John,
I don't have this file in my 14.28.29333 folder either. Only in 14.20.27508 and 14.16.27023
But maybe this way will help you:...
-
February 7th, 2021, 12:57 PM
:: usually means global. Just to distinguish from the possible local definition of the same operator or method in a class.
-
February 7th, 2021, 12:53 PM
Could something from
https://stackoverflow.com/questions/14197802/how-to-connect-sqlcmd-to-the-server...
-
February 5th, 2021, 11:58 AM
1. line 62:
mxbinned = mxGetCell(prhs[0], m);
What is mxbinned ?
What is mxGetCell?
2. line 72:
P_total += P_vec[m];
both P_total and P_vec are integer arrays. So you should be able to...
|
Click Here to Expand Forum to Full Width
On-Demand Webinars (sponsored)
|