I found an actual bug with the VSTO ListObject in Excel and insertions of data. See this post on the MSDN forums for details.
Category: Microsoft
I have a case where the user is entering strings into the application, and I have to match that string with the values from a…
IISToolshed – thanks to Paschal for pointing it out.
The standard combobox control doesn’t support the double-click event, as it is actually a combination of more than one control itself. In my case, I…
Just a quick tidbit about using the Excel object model and C# in VSTO 2005. ActiveCell.Offset (as we know it in VBA, and even VB.Net)…
SelfSSL is a tool found in the IIS 6.0 Resource Kit. It allows you to generate SSL certificates for a development environment. In all the…
Having to excecute hundreds of .sql files in an environment without port 1433 open led me to this nugget of a Usenet post: How to…
Today we are migrating my project from Whidbey Beta1 to Beta 2 (if you know why this is happening today, go ahead and laugh with…
In my last post I described a “Select Distinct“ function for a datatable. This is a whole lot easier using Whidbey. You can get a…
I needed to perform a “Select Distinct“ on a datatable, not in the database, for binding to a listbox. Found a good solution here. Modified…