.NET news » Visual Studio Visual Studio Rss Feed

download

VSTO 3.0: Developing Office Business Apps with Visual Studio 2008

With custom form regions in Outlook you can pull in data from designated data sources and truly customize your users' Outlook 2007 experience.

Authoring Visual Studio Debugger Visualizers

Visual Studio Debugger Visualizers are a great addition to the developers debugging toolbox. Their purpose is to provide a custom view of data during a debugging session. This article will cover developing a simple string visualizer that allows the string to be replaced during the visualizer session. Additionally, necessary steps to debug your visualizer will be covered.
22 Jan 2008, 06:28:00   Source: Authoring Visual Studio Debugger Visualizers   Tags: Visual Studio Addins Debug

Foundations: What's New for WCF in Visual Studio 2008

Visual Studio 2008 and the .NET Framework 3.5 provide new tools and support that extends Windows Communication Foundation (WCF). Visual Studio 2008 also automates a number of manual WCF tasks for the developer as well.
17 Dec 2007, 18:00:00   Source: Foundations: What's New for WCF in Visual Studio 2008   Tags: Visual Studio

Top 15 Things to Love about Visual Studio 2008

Lead Product Manager Dan Fernandez lists his top 15 things to love about Visual Studio Express.
11 Dec 2007, 12:45:08   Source: Top 15 Things to Love about Visual Studio 2008   Tags: Visual Studio

An Overview of ASP.NET 3.5 and Visual Studio 2008

On November 19, 2007, Microsoft officially released the ASP.NET version 3.5 and Visual Studio 2008. Like with the progression from ASP.NET 2.0 to 3.0, the features in ASP.NET 3.5 are additive, meaning that the core assemblies installed from the .NET Framework version 2.0 are still used by the 3.0 and 3.5 versions. The In short, ASP.NET 3.5 doesn't change or take away or break any functionality, concepts, or code present in 2.0 - it simply adds new types and features and capabilities to the framework.

This article provides an overview of the new features in ASP.NET 3.5 and the new web/ASP.NET-related features in Visual Studio 2008.

20 Nov 2007, 18:00:00   Source: An Overview of ASP.NET 3.5 and Visual Studio 2008   Tags: ASP.NET Visual Studio

Creating Visual Studio Add-Ins

Visual Studio provides one of the most powerful IDE's on the market. One under-exploited aspect of this IDE is the extensibility model. Programming IDE's are not static development tools. Development techniques, tools, and concepts change. Extensibility has been built into Visual Studio from its early inceptions. The great thing about Microsoft's foresight is that you can augment functionality of Visual Studio yourself. This article will demonstrate how to extend the Visual Studio IDE using Visual Studio, the .NET Framework, and the Visual Studio Add-In and automation models..
26 Sep 2007, 04:00:00   Source: Creating Visual Studio Add-Ins   Tags: Addins Visual Studio

Visual Studio SDK Tips and Tricks

Extensibility in Visual Studio is a bit like science and technology-there is always more to learn and discover even for the experts. In this article, I'll present a few tips and tricks you may find helpful when creating packages with the Visual Studio SDK.
26 Sep 2007, 04:00:00   Source: Visual Studio SDK Tips and Tricks   Tags: Visual Studio

Targetting the .NET Framework 2.0 with Visual Studio 2008

Upgrading to a new Visual Studio means installing on a few developer machines - upgrading to target a new framework (3.5) means ensuring that every client of the application has the new framework installed. With Visual Studio 2008 it's possible to target the older frameworks (2.0 and 3.0)

Custom Dialogs to Visual Studio Setup Projects

Adding Custom Dialogs to your Visual Studio Setup Projects
17 May 2007, 13:21:00   Source: Custom Dialogs to Visual Studio Setup Projects   Tags: Visual Studio

Debugging SQL Server 2005 Stored Procedures in Visual Studio

With Microsoft SQL Server 2000 it was possible to debug stored procedures from directly within Query Analyzer (see Debugging a SQL Stored Procedure from inside SQL Server 2000 Query Analyzer for more information). With SQL Server 2005, however, this functionality was moved out of SQL Server Management Studio and into the Visual Studio IDE. Using this technique, it is possible to step into your stored procedures, one statement at a time, from within Visual Studio. It is also possible to set breakpoints within your stored procedures' statements and have these breakpoints hit when debugging your application.

All editions of SQL Server 2005 include debugging support (including the Express Edition). However, only the Team Systems and Professional editions of Visual Studio enable stored procedure debugging from within the IDE. In short, if you are using Visual Web Developer or Visual Studio Standard Edition then you cannot step through a stored procedure or enter the stored procedure via application debugging.

In this article we will examine how to debug SQL Server 2005 stored procedures through the Visual Studio IDE. We will look at both stepping into a stored procedure directly from the IDE as well as how to set breakpoints within the stored procedure that are then hit when debugging the application.