Disable jScript Intellisense
From the Visual Studio menu select:
Tools -> Options -> Text Editor -> JScript
Then uncheck Auto List Members and Parameter Information.
Also, uncheck options under Miscellaneous - Show Syntax errors
From the Visual Studio menu select:
Tools -> Options -> Text Editor -> JScript
Then uncheck Auto List Members and Parameter Information.
Also, uncheck options under Miscellaneous - Show Syntax errors
Add subkeys Place0,Place1,etc
Under each subkey add two REG_SZ values
Name = “Shortcut Name”
Path = “Folder location”
HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL Server\100\Tools\Shell\Open Find\Places\UserDefinedPlaces
I was getting this error while trying to deploy an excel-add-in through clickonce.
URLDownloadToCacheFile failed with HRESULT ‘-2146697210′
Error: An error occurred trying to download ‘http://###/ExcelAddIn.vsto’.
Simple fix - add .vsto –> application/x-ms-vsto to the MIME type in IIS.
Kind of a weird one - Ampersands disappear in labels, unless you set the UseMnemonic property to false.
If you have reached the two connection limit for Terminal Services, you can disconnect one of the sessions by using the console session.
To use the console session, click on Start, Run and enter “mstsc /admin”, then click on OK. This will open the RDP window and you can connect normally from there.
As a 15+ year VB coder, I found this podcast to be pretty enlightening about the future of VB along with some myth busting.
If you need to test sites for IE 6 compatibility, it is hard to beat Virtual PC. These images expire after a while, but MS has been posting updates.
<PagerStyle HorizontalAlign="Center" />
stopped working in IE8. Updated the css to the following and everything centered fine.
.dgrGridpager table
{
margin: 0 auto 2px auto;
}
I needed to allow access to file create and delete to a specific user in sql server 2008. This advanced option is now disabled by default.
To enable:
sp_configure ’show advanced options’, 1;
GO
RECONFIGURE;
GO
sp_configure ‘Ole Automation Procedures’, 1;
GO
RECONFIGURE;
GO
When populating a tablelayoutpanel dynamically, the horizontal scrollbar kept appearing, even though there was no need for it.
It looks like there is no property to disable only the horizontal scrollbar, but I did find this workaround.
Pad the layoutpanel to the width of the horizontal scroll bar and the scroll bar will disappear.
int vertScrollWidth = SystemInformation.VerticalScrollBarWidth;
tableLayoutPanel1.Padding = new Padding(0, 0, vertScrollWidth, 0);