Showing posts with label Microsoft Visual Studio. Show all posts
Showing posts with label Microsoft Visual Studio. Show all posts

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

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 control, a DataGridView control, and some DataAdapter controls in a windows-based application

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

Die Visual Studio 2008 RTM Version ist für die MSDN Subscribers verfügbar.

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-06-24

ReSharper 3.0 für Visual Studio Orcas Beta 1

ReSharper 3.0 ist mit vielen nützlichen Verbesserungen und neuen Features veröffentlicht.

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