unable to Save Changes in Visual Studio 2013 [closed] - c#

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 7 years ago.
Improve this question
I am currently doing some programming on Visual Studio 2013. It was working fine until it suddenly unable to save changes I made on my program. I can't figure out what happened for it was all so sudden that after I successfully run the program, edited some codes (removed a label), then run the program again, changes cannot be seen on the program I run. You can see the changes on the design but not during the program is running. Can someone tell me what to do so that I save changes on the running program? Thanks a lot.

I am not sure how this one worked but running other Visual Studio 2013 Projects solved the issue.
Please leave comments on this answer if you know how running other VS 2013 projects solved the issue. :)

Most probably that project you are referring to might not have built successfully when you ran the project after the changes. Even if you save the changes, if the project is not built after changes are made, you won't see the changes in runtime. Please refer this to see about setting Build Options in Visual Studio...

Related

Update to VS ver 2012 - 11.0.50727.1 errors [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 months ago.
Improve this question
We recently upgraded to 2012 Visual Studio 11.0.50727.1 (update 5). We need to keep 2012 because in later versions, the C# statements do not work (like obj["Click"] ()).
So when I brought it up I got a message that SccProviderPackage did not load correctly (see image). IT said I could probably ignore this, as it is not used.
But then when I opened my projects there was a problem. I can still see the Solution Explorer on the right (see image). But on the left where there used to be the tests I can run there is nothing. Not even a menu. I looked through the View menu to see if there was a way to show it, but I could not find anything.
Could this be a problem from that error, or some other kind of error?
BTW this is on Windows 10.
error loading
I needed to do a Ctrl + E, T to get the menu to appear

There was an error activating the remote language server, C# language [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 months ago.
Improve this question
After downloading devExpress extension, I got this error. But I don't know how to fix it. Please help me, thank you so much.
My problem
My .xml file is on mediafire.
I had this error. It disappeared after I logged in to VS, then restarted the program.
The one and only solution that worked for me is to update the visual studio to the latest version and boom!
I've had this error in the comupter of one of our collaborators. I've just sent these files from my computer to him. So he's replaced the files in his machine and the problem was solved. I think this way we've avoided to spend hours to update Visual Studio.

Issues with Visual Studio 2017 exe file opening and closing immediately.. Now being able to view it properly? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
So I recently started using Visual Studio 2017 for my C# class.
I recently created a code that I saved and wanted to see if it work properly. So I build the solution and it went successfully. I looked up the application(exe) file and opened it but immediately the command prompt would close so i don't even get a chance to view that the code worked. Is there anything I can do so I can view the code in the command prompt and properly run it so i can see it work correctly.
Any Help would be greatly appreciated!
Quick Note: I tried doing ctrl + f5 key to run the program but for some reason it doesn't work on my laptop nor do anything
It sounds like the program actually finishes and therefore closes. Adding a
Console.ReadLine();
at the end of your program will require an enter key press before closing.

My computer lost power while working on a project, how can I recover my data? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I was working on a c# project on my computer when I accidentally removed the power cord.
When I started my computer back up I tried to load my project, but I got a error:
There is no editor available for 'c\user\documents\visualstudio 2013\projects\project_name\from1.cs
make sure the application for the file type(.cs) is installed
On the same project I have different forms and those still work, only from1 is not working. The data set only contains 0's.
What can I do to fix this?
Either something got corrupted in your Visual Studio installation, or (more likely) the file you were working on before your computer was shut down (which I assume was from1.cs).
Are you able to open from1.cs and from1.Designer.cs in something like Notepad? You may want to look for NULL terminators in your file as suggested by this answer on this (possibly duplicate) question.
If that doesn't work, either try copying the existing code from from1.cs and from1.Designer.cs into new files in your project, or repairing/reinstalling Visual Studio. Just make sure to make a backup of your project first, just in case! ;)

soft stoppped working [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
this is might be really weird, but I have no idea what kinda wizardry of this. Basically, my Visual Studio stopped responding to my changes, it stopped building solution. I can comment code, which would completely ruin the logic of program, and Visual Studio will still run program that I guess it has in memory. It's really annoying, and I have no idea what it is. I keep restarting software, but it's still does the same. It's a licensed software. I was wondering If someone knew what was going on. Thanks!
I've seen this a few times, and usually one of or a combination of the following will work:
Clean the solution, then build it.
Change the from "Release" to Debug (or vice-cversa) then clean and build, then revert back.
Close visual studio and manually delete everything in the \bin directory
For an asp.net website, close visual studio and delete the files in C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files (Path will vary depending on your machine setup This is where my ASP.NET versino 4 files are compiled to.)

Categories