Advice on whether or not Microsoft has fixed the buggy combos .. thus worth the move from VS2003 to

  • Thread starter Thread starter Earl
  • Start date Start date
E

Earl

To upgrade or not? This, to me, is based upon whether or not Microsoft
has -- at least -- fixed the buggy controls from VS2003:

Combo (clearing and binding context issues)
Checked ListBox (checked items losing status when control goes visible)
Datagrid (header alignment to the right smashes into the grid)
DataAdapter (creates timestamp for Insert command, amongst other oddities)

Did I forget something? Does anyone know for certain if these items have
been fixed in VS2005?
 
There are a number of changes with the ComboBox in 2005. Most notably the
SelectedIndex=-1 bug.
It still has an issue when clearing the selected item via the keyboard
(selecting the text and hitting delete). The control doesn't fire a Validate
because it doesn't detect a SelectedItemChanged (as no item is selected?)
Thus, it is better but not perfect.

The datagrid header alignment issue is fixed.

Jim Wooley
MCSD.Net
 
Thanks to both. I forgot to mention the wacko TabControl bindingcontext
issue, but here's praying it was so obvious that it got fixed.
 
Hi Ken,

I am facing some problems while working with datagird in my windows form.
I want my datagrid as readonly, but on certain condition I want to make it
as updatable. But a a time only one row should be updatable (like web form).
And after editing the data I should be able to save to changes to my database.
How can I achieve this.
I also would like to know waht is the best approached to save data in
database via datagrid.

Thank in advance.
Shailesh.
 
Back
Top