Cannot Modify VS2017 on installer.exe - visual-studio-2017

I'm trying to manually deselect Redgate Readyroll when Modifying the components on installer.exe but I'm always getting this error. And when I click OK, I'm stuck to the "Getting things ready" message. Can someone please help. Thanks.

Related

Why can't I run my code on eclipse, even though i can build it?

I am using Eclipse which i will have to use for my c++ assignments. I have downloaded all the necessary softwares. when i build that "testproject"(that prints hello world), it does not give out any errors, yet when i press the run button, the following message pops up. I have tried "clean" and included MinGW/bin in the "includes" under the properties category. I can't seem to find the solution to this error message. I don't understand why there is a "Launching configuration" either where you have to put in "c/c++ application" in order to run it. Could someone help me?

cant see c/c+ on visual studio 2019

hi im currently fallowing a udemy course and it my first road bump after 2 hours still cant figure this out please can someone help i should be able to see a tab that says c/c++ but i cant. i have made sure my c++ package is installed. im using vsc 2019 and i just cant get it working any help would be very appreciated
i have tried to "modify" vs in visual studio installer and i didnt work.
i have ask the udemy instructor and no answer
any help would be so useful thanks
(if image didnt load here is the link to imgur) https://imgur.com/gallery/zkTdba6
You mentioned that you have installed the Desktop development with C++ workload. That should be enough to get you started. However, the C/C++ options appear in the project properties only after you have added a C or C++ source file.
Sometimes it additionally asks to download/install C/C++ packages via different dialog boxes popping up. If it has asked, please make sure you installed it properly without a power failure in between. Or else as a last resort, try repeating the installation process.

Debugging stop working in EWS functionality

I am debugging some issue, and it gives me this exception and then no other call works to this through Stream Notification
I'm not sure that what do you mean with "Debugging stop"? Is that visual studio doesn't stop on the breakPoint? If so, you can try to rebuild your project and delete bin folder. Please refer to this link:
Why the debugger doesn't work
Also, I saw the issue about ServiceRequestException which represents an error that occurs when a service operation request fails. I don't know what servcie of EWS you're using. Maybe you can try to use a simple code to test your VS and see if this problem will happen again. However, you need to make sure which lines or codes occurs the issue.

unable to start program Project\Debug\Test.exe wasn't found

I am new to Visual Studio and I really don't have any idea of how it works.
I tried to make a simple "Hello World!" to print in C++, and started debugging.
But then I got the following message:
"Unable to start program
'c:\Users\name\source\repos\Project\Debug\Test.exe'
The file was not found."
I saw someone on a different post who was told to press "Set as StartUp Project" at the name of the project.
Other than that, I don't really know where to look for the answer. I've searched around the net, but couldn't find anything.
I hope you can help.
You have to build your project first, then start debugging.
If you don't you get this message.
The problem you are facing likely is caused because you did not build the program. Try building the program by going to the Build menu (Located to the right of Project and to the left of Debug), then press build solution in the dropdown list that appears. Wait until it is finished building, and you will likely have a working program again when you start debugging. If this does not work, you may have a bug with visual studio, in which case you must restart. If none of the above works for you, your best solution would be creating a new program and pasting the code from the old program into the new one.

Unable to create registration information for file named?

I'm trying to deploy my ActiveX Control DLL developed in ATL project in VS2008 (I'm new to this kind of deployment).
Follow some tutorials, I'm trying to create msi file for my control using Setup Project in VS2008. I've set the Register property of Primary Output to vsdrpCOM. It built with no errors, but I got the warning: Unable to create registration information for file named. Although I can install the control in IE, it doesn't work but displayed with a red X icon. I've also tried other Register options but it's no use.
I think my control is still not registered during installation because of the warning.
Could anyone please give me some instruction to solve this? I've spent hours on google :-(
Thank you!
Use the property vsdrfCOMSelfReg.
See http://msdn.microsoft.com/en-us/library/h793hc1y%28v=vs.90%29.aspx.