If you want to test threading that will still perform after closing down your browser, you need to still have the debugger running. In order to do that, you need to uncheck the box in the Tools/Options/Web Projects section that states:Stop debugger when browser windows is closed, close browser when debugging stops.
…Category: Microsoft Visual Studio
Visual Studio Community Edition 2017 – VS Freezes when Accessing Context-Menu on SSRS .rdl Reports
Sometimes when I attempt to deploy a report to my Reporting Services Server, Visual Studio freezes for a minute or more before bringing up the context menu. After some research, my problem was resolved by disabling the Image Optimizer extension. …
Visual Studio Community Edition 2017 – Locked File or Folder with Visual Studio Installer
https://stackoverflow.com/questions/45839250/unable-to-update-visual-studio-installer
Quote: “The solution I found was to close down visual studio, go to “c:\Program Files (x86)\Microsoft Visual Studio\Installer”, rename the folder “Installer” to something else then run vs_installer.exe from the renamed folder.“…
Microsoft Visual Studio – How to Delete rdl.data Files in BIDS
An rdl.data file will be created each time when the report is viewed with different input parameters. The data file caches the data so running the report again in the IDE with no changes to the parameter data will render …
Microsoft Visual Studio – Debugging doesn’t start
There have been many suggestions to get this working. I will give you three that worked for me in the order they should be tried.
- Restart your computer. Some of the projects files run in the background. Stop them if
Microsoft Visual Studio – Completely Remove all Files and Folders Visual Studio Before Attempting a Fresh Install
After uninstalling all versions of Visual Studio products from your computer using the Programs and Features by means of the Control Panel, you may want to clear out the following folders and files before attempting to reinstall Visual Studio again.…
Microsoft Visual Studio – ASP.Net This Collection Already Contains an Address with Scheme HTTP
This collection already contains an address with scheme http.
There can be at most one address per scheme in this collection.
If your service is being hosted in IIS you can fix the problem by setting ‘system.serviceModel/serviceHostingEnvironment/multipleSiteBindingsEnabled’ to true or …
Microsoft Visual Studio – The default format code hot keys for Visual Studio – VB.Net
Let’s say you copied/pasted many lines of code to create a new function, and then gutted out 50% of the code. Sometimes the code does not reformat nicely. To manually reformat the code in VB.Net, Hold down the CTRL key …
Microsoft Visual Studio – How to set forecolor of textbox when control is set programatically to readonly
I have found that if my textbox control is set to ReadOnly= True at design time, I can change the forecolor programmatically without a hitch.
If my textbox control is set to ReadOnly = False at design time, and then …
Microsoft Visual Studio – Clear Find and Replace window history
In Regedit:
HKEY_CURRENT_USERSoftwareMicrosoftVisualStudio[Version Number}Find
Remove all keys that starts with Find
and Replace
, like Find1
, Find2
, Replace1
, etc. You can remove history for Find
only or Replace
only, or remove only particular Find
…