Month

Your search for 12/2005 returned 2 results.


DataSet Visualizer for Visual Studio 2005

I work with DataSets quite a bit, and I'm a fan of the DataSet visualizers that were available for VS 2003.  The DataSet QuickWatch and the XML Visualizer were two that I used a lot.  In particular, XML Visualizer allowed you to display all of the different data versions available in a DataRow. Visual Studio 2005 ships with a DataSet visualizer, but it doesn't ...

Read More


DataGridView: Where’s my tooltip?

If you've worked with the .NET 1.1 DataGrid control, you'll appreciate the enhanced DataGridView control of the 2.0 runtime.  I was mystified for a moment, however, when setting a tooltip on the grid failed to have any effect.  My code looked like this: DataGridView.HitTestInfo info = grid.HitTest(e.X, e.Y); if (info.RowIndex > -1) { OrdersRow row ...

Read More