Welcome to MSDN Blogs Sign in | Join | Help

New O'Reilly book with articles on CSS Properties window, HTML spell checker and WAP add-ons

O’Reilly recently published a book called Windows Developer Power Tools which contains tons of useful information about free tools you can use to work more efficiently, improve your Visual Studio experience and fill the gaps. I am glad to see that it included articles on popular add-ons to the Visual Studio Web development tools
CSS Properties Window add-on: http://safari.oreilly.com/0596527543/windowsdpt-CHP-8-SECT-8

ASP.NET/HTML Spell Checker add-on: http://safari.oreilly.com/0596527543/windowsdpt-CHP-8-SECT-5

Web Application Projects add-on: http://safari.oreilly.com/0596527543/windowsdpt-CHP-8-SECT-9

as well as a great set of articles on Web debugging tools.

Complete Table of Contents:  http://safari.oreilly.com/0596527543?tocview=true
Published Thursday, December 28, 2006 10:19 AM by Mikhail Arkhipov (MSFT)

Comments

# HTML Spell Checker - All Files Check

Hello, I just found this add-in and tried to comment on the post itself, but the comments are closed.  I am not sure if this is because I have the all files option selected in solution explorer, but running the macro you defined for scanning all files does not scan any files.

If I change the ProcessProjectItemCollection function to:

For Each pi As ProjectItem In projItemsCollection

           'If pi.ProjectItems Is Nothing Then

           If pi.Kind = Constants.vsProjectItemKindPhysicalFile And _            

           (pi.Name.EndsWith("aspx") Or pi.Name.EndsWith("ascx") Or _

           pi.Name.EndsWith("html") Or pi.Name.EndsWith("htm")) Then

               Dim window As Window = pi.Open(Constants.vsViewKindTextView)

               window.Visible = True

               window.Activate()

               _outputWindow.OutputString(pi.Name + vbCrLf)

               DTE.ExecuteCommand("HTMLSpellChecker.Connect.HTMLSpellChecker")

               'End If

           Else

               ProcessProjectItemCollection(pi.ProjectItems)

           End If

       Next

   End Sub

Commenting out 2 lines to check if is nothing, then it works just fine on the project and scans all the aspx, ascx and html files fine.

Wednesday, January 03, 2007 10:50 AM by nitro001
New Comments to this post are disabled
 
Page view tracker