'Visual studio keeps on popping Save as dialog box whenever I try to create or change existing table in Microsoft SQLClient
I have been trying to get rid of this problem but seems like there's no solution to this, my visual studio keeps on popping save as dialog box whenever I try to make any changes to the tables in Microsoft SQL client. I've tried uninstalling and reinstalling the package but that didn't help either. btw i'm using it in c#.net project
Solution 1:[1]
First, the registry modification solution
Find the registry and delete the following 2 items HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug\Debugger HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft.NETFramework\DbgManagedDebugger
Also delete the following registry keys on 64-bit operating systems:
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug\Debugger
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft.NETFramework\DbgManagedDebugger
- Make changes in the visual studio menu
Enter visual studio, select [Tools]->[Options], click [Mode], in the [Real-time] tab, uncheck the three checkmarks of [Native] [Script] [Managed] and it will be ok, restart the computer
- In the IIS website properties, main directory, application configuration, and debugging, just remove the first check mark, which may be the point of the customer's technical debugging program. restart the server
Hope it helps you thank you
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Housheng-MSFT |