18,616 questions
0
votes
1
answer
114
views
C++ condition variable doesn't block the thread on wait_until() using the time_poin::max()?
The below code doesn't block the thread and it gets into an infinite loop and keep printing
Waiting...
Waiting...
My idea is, the thread should block on the max() time and when it's set to now(), it ...
0
votes
1
answer
64
views
URL rewrite webconfig settings broke iisexpress
I was doing a merge for another devs app. vs2013 wvc web app ,net 4.5.2.
part of the merge was adding this to the config for url rewrite.
<system.webServer>
<caching enabled ="...
0
votes
2
answers
178
views
Aiogram Telegram Bot Python
I have a problem. In previous versions of aiogram (2.0, 2.5) Dispatcher had a method "process_message".
As I remember, It had a meaning of continuing message to another handler.
How is it ...
0
votes
0
answers
99
views
Access violation reading location : CryptProtectData
I'm trying to call CryptProtectData from the Data Protection API (DPAPI):
DATA_BLOB dataIn;
DATA_BLOB dataEncrypted;
BYTE *phrase = (BYTE *)plain.c_str();
DWORD length = strlen((char *)phrase) + 1;
...
0
votes
1
answer
122
views
Visual Studio 2013 Crystal Report error "MIssing parameters Values"
I am working on an application, which comes from several migrations. It started in Visual Studio 2010 and Crystal Reports 9 and is now in Visual 2013.
The latest version of the code was lost and I am ...
0
votes
1
answer
153
views
Virtual method with default parameter changed behavior [duplicate]
I was asked to make a slight change on an old project build with Visual Studio 2013 VC++. So, I installed VS2013, made the change, compiled it but its behavior has changed on a code that I didn't ...
1
vote
1
answer
447
views
Running C++ dll in C# for calling functions
I have code in C++ that I want to package as a dll and use in C# code. I made the dll, but when I am loading it, I am getting System.AccessViolationException. (First, the dll wouldn't load and after ...
0
votes
0
answers
136
views
Error "Cannot open source file" always occurs on Visual Studio Platform Toolsets v120_xp
I have Visual Studio 2019 and 2013 in my computer.
I install VS2019 first, then VS2013 because I need v120_xp to build old project recently.
The error, "fatal error C1083: Cannot open source file&...
-1
votes
1
answer
35
views
Upload file to Project1 from Project2 in same solution
I Have a solution that has two projects. Project2 displays a webform to the user having an asp:FileUpload control. The ask is to load this file from project2 to Project1 folder(i.e. /Project1/img)
Any ...
0
votes
1
answer
454
views
VS2013 and CUDA 12 compatibility
Error 2 error MSB3721: The command ""C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.0\bin\nvcc.exe" -gencode=arch=compute_35,code="sm_35,compute_35" --use-local-env -...
2
votes
2
answers
7k
views
Add-migration and enable-migration are not recognized
I am trying to enable-migrations and add-migration in the project but getting error.
Anyone faced same issue please share your experience.
Visual Studio 2013
Entity Framework 6.4.4
Error:
PM> Add-...
0
votes
1
answer
161
views
css styles not being shown on the page
I'm working with VS2013 Update 5 and Node.js v16. I had started off by following this guide. I've tried to add in css to it by adding in css-loader and style-loader packages and had updated the ...
1
vote
0
answers
686
views
Visual Studio 2022 Solution Upgraded from Visual Studio 2013 Fails to Set Telemetry Environment Variables
I recently upgraded a Visual Studio 2013 Solution with C++ Libraries in it to Visual Studio 2022. Everything went great except there were three major environment variables not set.
The error:
Error ...
2
votes
1
answer
668
views
Visual Studio 2013 Community stop Login – the online service is not available
I have a Visual Studio 2013 Community stop working; i. e. there is no login to my MS account with a message like that:
I tried the solution from the link below to update registry values to enforce ...
0
votes
0
answers
287
views
Curl Upload Stuck
I'm using curl-7.65.0 (Static) with Microsoft Visual Studio 2013.
I have the following method to upload files to the FTP server.
bool uploadFile(string sourcePath, string url, string & error)
{
...
-1
votes
1
answer
560
views
Routing not working after angular upgrade
I upgraded my angular project from 2 to 13 version and after that multiple tabs are not working properlyenter image description here
1
vote
1
answer
820
views
Why do IIS authentication settings change when I overwrite my published files?
Here is the procedure I go through to publish an application to our IIS server.
From VS2013, click Build->Publish MyApp (I publish to a share on our file
server)
Copy and replace MyApp's ...
4
votes
2
answers
2k
views
Visual Studio 2013 cannot login
Cannot sign in to Visual Studio using Visual Studio 2013 (Professional edition).
Anyone knows what is the problem ?
0
votes
0
answers
42
views
Windows messes up data put in TextBox Control
This is unbelievable to me, and I do not know how to work around this problem!
I try to put [4]0.004 into an EditBox Control and what appears in the EditBox is 0.004[4]. Same result is obtained with ...
0
votes
0
answers
68
views
MFC project has linking error on Visual Studio 2013?
When I tried to add a toolbar to my mfc project in Visual studio 2013, the following errors occurred. Has anyone worked on this? How can I fix the errors?
mfc project in Visual studio 2013
...
0
votes
0
answers
378
views
Test connection failed because of an error in initializing provider. ora-12154 in connecting OraServer in SSIS using Visual Studio 2013
I want to connect the OraServer in the SSIS using Visual Studio. But the error encountered is Test connection failed because of an error in initializing provider. ora-12154 TNS:could not resolve the ...
0
votes
1
answer
1k
views
Error Code 0x80070021 HTTP Error 500.19 - Internal Server Error
I trying to configure IIS but when I run the project this error appeared : Error Code 0x80070021 HTTP Error 500.19 - Internal Server Error
May I know the cause and solution for this?
This is example ...
0
votes
0
answers
261
views
Locating corrupt Visual Studio user settings
My copy of VS2015 has for several weeks had a problem in specific situations:
File > New > Project gives error message
Failed to create a 'ImageSource' from the text '..\Images\Medium.png'
and ...
0
votes
0
answers
55
views
Fade out exit requires 2 clicks instead of one
I'm trying to implement a fade in/out to main form open/close, open fade in works fine, however close fade out requires 2 button clicks to work.
Current code:
using System;
using System.Collections....
-1
votes
1
answer
2k
views
$ (dollar sign) string in C# not working in VS2013
Why can't I use the dollar sign $ in Console.WriteLine()?
I know that I use it for using the C# code in {} but it doesn't work and I don't know why? My code is:
Console.WriteLine($"Name is : {}&...