Browsing Tag »Visual Studio 2008«

Web Custom Control Behavior and Authoring

June 10, 2010

Some Best Practices and Guidance for Web Control Vendors Targeting Visual Studio The goal of this post is to provide guidance for control vendors on best practices for writing custom controls with regard to their behavior in Visual Studio. It is designed to give vendors insight into how Visual Studio behaves when performing common actions related to custom controls, as well as suggestions to optimize the experience for their consumers from within VS—largely concentrating on VS versions 2008 and 2010. This post does not cover runtime or control programming concepts such as usage of any control or design-time specific APIs. For more information on these other concepts, please see the “links and other resources” section at the...(read more)

Upgrade or Uninstall of Office 2007 might cause VS 2008 Web designer to hang

April 19, 2010

With Office 2010 releasing, some of you might be upgrading to Office 2010 from Office 2007. A plain uninstall of Office 2007 might also run into the issue described below. If this is something you have done (or plan to do) and are running a 64-bit OS, please keep on reading. On machines with a 64-bit OS, uninstall of Office 2007 will break the VS 2008 web designer. You will find that the VS designer won't be able to load, and any attempts to switch to Design View will hang the product. Note that 32-bit machines are not affected and neither are other VS releases. The root cause of this problem is that Office 2007 and the VS 2008 web designer both share a component, 32-bit MSXML5. When Office 2007 uninstalls or gets upgraded, MSXML5 is removed...(read more)

Issues between Visual Studio, Microsoft Wireless Laser Mouse and Windows 2008 Server

April 15, 2010

Quite some time ago, when Vista just went RTM, Risk Strahl discovered that when he used Microsoft Wireless Laser Mouse, code intellisense and markup validation in Visual Studio stopped working. Since several activities in VS are done in a background on idle (not to be confused with background threads - idle processing is performed on the main thread), it was clear that VS was not getting any idle time slots, i.e. something was keeping OS busy. We tracked the issue down some third party applications as well as to a bug in Microsoft Wireless Mouse driver that was keeping OS busy and prevented OS from going to sleep or launching screen saver. See Knowledge Base topic for details and workarounds/updates. What about Windows 7? The fix was included...(read more)

Spell checker 2.3 for Visual Studio 2008 SP1

March 30, 2010

Minor update for the Spell checker add-in for VS 2008 SP1. It is now available at Visual Studio Gallery . Direct link: http://visualstudiogallery.msdn.microsoft.com/en-us/2f3d691d-8838-4d84-ad64-44a02db37e30 What's new in version 2.3: Updated native code loading mechanism to improve robustness Fixed bug when applying suggestion would also delete punctuation immediately following the word. You can find extended information on the add-in and possible customization in earlier post . For VS 2010 version look here . Thanks Mikhail Arkhipov Read More......(read more)

Tip#102: Did you know… How to specify tag specific formatting

March 25, 2010

Let’s see this with an example.  I have the following html code on my page. Now if I format the document by selecting Edit –> Format document (or Ctrl K, Ctrl D) The document becomes I want the content inside td should remain on the same line...(read more)

VSDoc for jQuery 1.4.1 Now Available

February 9, 2010

We finished generating a new VSDoc for the latest update of jQuery. You can download it from the jQuery Downloads page . A refresher on how to use the file can be found here or here . Happy coding! Jeff King Program Manager Visual Studio Web Tools Read More......(read more)

Tip#101: Did you know… How to scope Theme

January 25, 2010

Themes are a way to define properties of pages and controls, and can be used to provide consistent look across pages. There are several different levels of applying a theme to an individual control, a page, or an application. Control Level Define a named...(read more)

Tip#100: Did you know… How to view ASP.NET trace information?

December 19, 2009

You can enable ASP.NET tracing either at an Application level or at a page level; see Tip# 77: Did you know… How to enable Page Level Tracing for your ASP.NET pages? for more information. With the tracing enabled, you can view the trace output in a trace...(read more)