visual-studio-2013

fatal error C1001: An internal error has occurred in the compiler. 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c'

南笙酒味 提交于 2020-08-04 18:49:11
问题 When building a c++ solution in Visual Studio 2013, i get this error: fatal error C1001: An internal error has occurred in the compiler. (compiler file: 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c') How can I resolve this? 回答1: Errors related to compiler file p0io.c may be caused by locale settings in Windows 10. This may be fixed by turning off UTF-8 support in the region settings, as described here. 来源: https://stackoverflow.com/questions/57801744/fatal-error-c1001-an-internal-error-has

fatal error C1001: An internal error has occurred in the compiler. 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c'

丶灬走出姿态 提交于 2020-08-04 18:41:47
问题 When building a c++ solution in Visual Studio 2013, i get this error: fatal error C1001: An internal error has occurred in the compiler. (compiler file: 'f:\dd\vctools\compiler\cxxfe\sl\p1\c\p0io.c') How can I resolve this? 回答1: Errors related to compiler file p0io.c may be caused by locale settings in Windows 10. This may be fixed by turning off UTF-8 support in the region settings, as described here. 来源: https://stackoverflow.com/questions/57801744/fatal-error-c1001-an-internal-error-has

Visual Studio “No connection could be made because target machine actively refused it 127.0.0.1:8888”

半城伤御伤魂 提交于 2020-08-02 06:45:10
问题 I tried to run a solution through Visual studio on my local machine. I get the webpage to appear and receive the error on the page: Unable to connect to the remote server No connection could be made because the target machine actively refused it 127.0.0.1:8888 The page that loads is http://localhost:5009/ and when I try localhost:8888 I get "This page can't be displayed" Thought it might be firewall related so I opened port 8888 but still the issue occurs someone suggested that this might be

How Do You Resolve This Parameter Not Valid Error? (C#, VisualStudio, WinForms)

青春壹個敷衍的年華 提交于 2020-07-23 06:15:11
问题 Apologies for being such an amateur, but this error pops up for every picture box every time I run the program. I tried re-importing the images and even deleting the pictureboxes, but the error always finds another picture box to work on (like it's intelligent or something). What is the problem here and how do you fix this? 回答1: You can add an image to a picture box as an embedded resource like that: Put a PictureBox on the WinForm. Select the quick action "Add image" or the "..." of the

How Do You Resolve This Parameter Not Valid Error? (C#, VisualStudio, WinForms)

孤街浪徒 提交于 2020-07-23 06:14:49
问题 Apologies for being such an amateur, but this error pops up for every picture box every time I run the program. I tried re-importing the images and even deleting the pictureboxes, but the error always finds another picture box to work on (like it's intelligent or something). What is the problem here and how do you fix this? 回答1: You can add an image to a picture box as an embedded resource like that: Put a PictureBox on the WinForm. Select the quick action "Add image" or the "..." of the

How Do You Resolve This Parameter Not Valid Error? (C#, VisualStudio, WinForms)

旧巷老猫 提交于 2020-07-23 06:13:49
问题 Apologies for being such an amateur, but this error pops up for every picture box every time I run the program. I tried re-importing the images and even deleting the pictureboxes, but the error always finds another picture box to work on (like it's intelligent or something). What is the problem here and how do you fix this? 回答1: You can add an image to a picture box as an embedded resource like that: Put a PictureBox on the WinForm. Select the quick action "Add image" or the "..." of the

Google Calendar API. Adding an event to someone calendar throws error “Error 401: invalid_client” just when authenticating

若如初见. 提交于 2020-07-03 04:48:13
问题 I have a C# class library from which I am trying to add an event to someone calendar just by using his/her email address and password as credentials. So I debug it and once started a new page in the internet browser is open and below error is displayed: Below the code: // It crashes when calling GoogleWebAuthorizationBroker.AuthorizeAsync UserCredential credential = GoogleWebAuthorizationBroker.AuthorizeAsync( new ClientSecrets { ClientId = "myGoogleAccount@gmail.com", ClientSecret =

How to enable CUDA 7.0+ per-thread default stream in Visual Studio 2013?

微笑、不失礼 提交于 2020-06-28 07:42:11
问题 I followed the method provided in GPU Pro Tip: CUDA 7 Streams Simplify Concurrency and tested it in VS2013 with CUDA 7.5. While the multi-stream example worked, the multi-threading one did not give the expected result. The code is as below: #include <pthread.h> #include <cstdio> #include <cmath> #define CUDA_API_PER_THREAD_DEFAULT_STREAM #include "cuda.h" const int N = 1 << 20; __global__ void kernel(float *x, int n) { int tid = threadIdx.x + blockIdx.x * blockDim.x; for (int i = tid; i < n;

HTTP error 500.19 - Cannot read configuration file

蓝咒 提交于 2020-06-24 05:02:27
问题 In one of my ASP.NET apps, all of a sudden I am unable to run it in Visual Studio 2013 due to the error displayed below. It appears that it is trying to open the web.config from a path that doesn't even exist. All of my project code, including web.config, are located under C:\Projects\SourceCode\AFEManager\Trunk\AFEManager.Web. I've found a number of posts here from users experiencing a similar error, but the solutions seem to vary and none I've found so far seem applicable to my situation. I

HTTP error 500.19 - Cannot read configuration file

百般思念 提交于 2020-06-24 05:02:16
问题 In one of my ASP.NET apps, all of a sudden I am unable to run it in Visual Studio 2013 due to the error displayed below. It appears that it is trying to open the web.config from a path that doesn't even exist. All of my project code, including web.config, are located under C:\Projects\SourceCode\AFEManager\Trunk\AFEManager.Web. I've found a number of posts here from users experiencing a similar error, but the solutions seem to vary and none I've found so far seem applicable to my situation. I