blog.easyciel.net author="Patrick Rabian" about="c#, sharepoint, biztalk, team system resources" more="news, samples, tips for .NET world's developers !"

Use Expresso for building and testing your .NET Regular Expressions !

Wednesday, 30 November 2005 23:29 by prabian

Excellent tools for creating regulat expressions ! Have an expresso :)

Basic features resume :

  • Still free of charge!
  • Build complex regular expressions by selecting components from a palette
  • Test expressions against real or sample input data
  • Display all matches in a tree structure, showing captured groups, and all captures within a group
  • Build replacement strings and test the match and replace functionality
  • Highlight matched text in the input data
  • Test automatically for syntax errors
  • Generate Visual Basic or C# code
  • Save and restore data in a project file
  • Maintain and expand a library of frequently used regular expressions
  • http://www.ultrapico.com/Expresso.htm

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5
    Categories:   .NET Projects
    Actions:   E-mail | del.icio.us | Permalink | Comments (0) | Comment RSSRSS comment feed

    Team system features by visual studio versions

    Wednesday, 30 November 2005 13:12 by prabian

    Different versions of Visual Studio Team System 2005 by features :

     

    Architect

    Developer

    Test

    Foundation

    RAD

    x

    x

    x

     

    Modeling

    x

    x

    x

     

    Management

         

    x

    Build

         

    x

    Test-Driven
    Development & Code Coverage

     

    x

    x

     

    Profiling &
    Load Testing

       

    x

     

    Source Control
    & Change Management

         

    x

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5
    Categories:   .NET Projects
    Actions:   E-mail | del.icio.us | Permalink | Comments (0) | Comment RSSRSS comment feed

    SharePoint Configuration Analyzer

    Wednesday, 30 November 2005 01:16 by prabian

    Voici un outils bien utile pour controler une installation de Windows SharePoint Services : SharePoint Configuration Analyzer.

    C’est un outil de Microsoft.
    Consulter la fiche sur MSDN

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5
    Categories:   SharePoint
    Actions:   E-mail | del.icio.us | Permalink | Comments (0) | Comment RSSRSS comment feed

    Using Xpath queries with MSXML

    Wednesday, 30 November 2005 01:10 by prabian

    To use Xpath queries with MSXML, don’t forget to set the following propoerty of your xml document object :

    xmlDocument.setProperty “SelectionLanguage”, “XPath”

    Example :

    Set xmlDocument = New DOMDocument40
    xmlDocument.Load(”example.xml”);
    xmlDocument.setProperty “SelectionLanguage”, “XPath”
    Set xmlNode = xmlDocument.selectSingleNode(”//COMPANY/CUSTOMER[substring(@type,1,2) =’FR’]”)

    Refer to the microsoft Knowledge base : How To Use XPath Queries in MSXML DOM selectNodes Method

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5
    Categories:   XML | Web Services
    Actions:   E-mail | del.icio.us | Permalink | Comments (0) | Comment RSSRSS comment feed

    How to change the !NEW tag on new documents under Windows SharePoint Services

    Wednesday, 30 November 2005 01:04 by prabian

    Use the following commmand line :

    stsadm.exe -o setproperty -pn [days-to-show-new-tag] -pv 0 -url [virtual-server-url]

    by replacing :

    [days-to-show-new-tag] with the number of days to show the !New tag (set to 0 to disable)
    [virtual-server-url] with the virtual server url (http://… )

    More informations on Microsoft knowledge base url : How to stop the !New tag appearing when you add items to your SharePoint Team Services and SharePoint Services Web site

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5
    Categories:   SharePoint
    Actions:   E-mail | del.icio.us | Permalink | Comments (0) | Comment RSSRSS comment feed