2008-09-05
FIX: The Visual Studio 2005 IDE may stop responding or may respond very slowly after you perform some operations to a form that has a complex DataSet
In the Microsoft Visual Studio 2005 IDE, you create a windows-based application that contains a form. The form has a complex DataSet control, a DataGridView control, and some DataAdapter controls. The IDE may stop responding or may respond very slowly when you perform one or more of the following operations:
• You edit the code windows and then open the form designer.
• You drag a field from the DataSet control to the designer.
• You right-click the component tray of the form design window and then select Line Up Icons.
• You drag the DataGridView control from data sources to the form.
http://support.microsoft.com/kb/956146
2007-11-25
LINQ to SQL Beta 1 and 2 to RTM Changes
Die Beispiele, welche ich mit Visual Studio 2008 Beta 2 erstellt habe, konnte ich mit der aktuelle RTM Version nicht kompilieren.
Diverse Methodennamen der Beta 2 wurden umbenannt. Die bisherige Add, AddAll und Remove, RemoveAll Methoden haben neuen Namen bekommen.
Die folgende Tabelle zeigt die alten und neuen Namen der betroffenenen Add- und Remove-Methoden. Diese Methoden betreffend LINQ to SQL - Entity Klassen.
Beta 2 Version | RTM Version |
Add() | InsertOnSubmit() |
AddAll() | InsertAllOnSubmit() |
Remove() | DeleteOnSubmit() |
RemoveAll() | DeleteAllOnSubmit() |
Die Umbennung der Methodennamen sind vom Blickwinkel Datenbank-Entwickler sinnvoll. Wenn wir einen neuen Datensatz hinzufügen möchten, verwenden wir die INSERT-Anweisung und wenn wir etwas löschen möchten verwenden wir die DELETE-Anweisung.
Die Änderungen sind auch vom Programm Manager LINQ to SQL (Dinesh Kulkarni) so argumentiert.
2007-11-19
Visual Studio 2008 RTM Version
http://msdn2.microsoft.com/en-us/default.aspx
Für die mehr Infos über Visual Studio 2008:
http://msdn2.microsoft.com/en-us/vstudio/products/default.aspx
2007-09-11
LINQ to SQL Beta2 to RTM Key Changes
http://forums.microsoft.com/MSDN/showpost.aspx?postid=2061468&siteid=1&¬ification_id=27123913&message_id=27123913
2007-06-24
ReSharper 3.0 für Visual Studio Orcas Beta 1
Gemäss Hersteller funktionert ReSharper 3.0 auch mit Visual Studio Orcas Beta 1 (nicht als offizieller Release sondern nur für Testzwecke!).
Auf mein Notebook habe ich Visual Studio 2005 und Visual Studio Orcase Beta 1 installiert. Nach der Installation von ReSharper 3.0 konnte ich das Tool mit Visual Studio 2005 ohne Probleme benutzen. Aber in Visual Studio Orcas Beta 1 war nicht mal der ReSharper Menü-Eintrag vorhanden.
So nach dem Motto. Wer sucht, der findet... Habe ich angefangen beim Hersteller unter Support nach einer Lösung zu suchen. Und... Gefunden...
Zauberzeile lautet:
To install ReSharper 3.0 for Visual Studio "Orcas" 9.0, set the VSVERSION installer property to 9.0: msiexec /i ReSharperSetup.msi VSVERSION=9.0
Viel Spass...
Özgür Aytekin