Have a question? Email Us or Call 1 (800) 936-2134
SubMain - CodeIt.Right The First Time! Home Products Services Download Purchase Support Community
 Tuesday, March 09, 2010
As announced earlier today we just closed the acquisition of the popular unit testing and code coverage product TestMatrix, as well as CodeSpell and StudioTools. We, SubMain, will continue to maintain and enhance these products.

TestMatrix adds support for unit testing, code coverage analysis, and test profiling to Visual Studio, seamlessly incorporating these critical development practices directly into the coding process itself; CodeSpell adds real-time, intelligent detection and correction of misspellings to Visual Studio; and StudioTools is a rich collection of Visual Studio enhancements.

We are also announcing today the availability of the new version for all three products - TestMatrix, CodeSpell and StudioTools - v2.1.10055 which adds support for Visual Studio 2010 RC.

We are very excited about taking over the future of such great products! TestMatrix complements CodeIt.Right into a Code Quality Suite which will be be complete with the addition of the new product codenamed Project Anelare in the following months.

For more on the agreement, please see the press release.

posted on Tuesday, March 09, 2010 12:03:29 AM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Thursday, February 25, 2010

Today we released update for CodeIt.Right Standard and Enterprise Editions - v1.9.10053. As part of our 2010 Product Roadmap, this version changes include significantly improved performance, support for GlobalSuppressions, new rules and bug fixes.

New in CodeIt.Right v1.9.10053:

  • Major performance improvements throughout the rule base
  • Added support for GlobalSuppressions - syntax is the same as the VSTS GlobalSuppressions file. This new feature is supported in both Standard and Enterprise editions.
  • SuppressMessage attribute for class now applied to all member of the class (see example at the bottom of the post)
  • New Rules:
    • Avoid the Page.DataBind method (AspNet)
    • Avoid the DataBinder.Eval method (AspNet)
    • Do not use SaveAs method to store uploaded files (AspNet)
    • Always define a global error handler (AspNet)
    • Do not disable custom errors (AspNet)
    • Avoid setting the AutoPostBack property to True (AspNet)
    • Interface methods should be callable by child types (Design)
    • Remove unused parameters (Usage)
  • Corrected download redirect link in the Enterprise Edition when new version is available. In the past versions it would incorrectly open the Standard Edition download page
  • Fixed Encapsulate Field refactoring issue
  • Other fixes for the reported issues

The following code sample on how class level SuppressMessage attribute excludes TypesAndMembersShouldHaveXmlComments rule for the class and all its members (bullet #3 above):

[SuppressMessage("SubMain.CodeItRight.Rules.General", "GE00005:TypesAndMembersShouldHaveXmlComments")]
public class MyUndocumentedClass
{
    public void MyUndocumentedMethod1{}
    public void MyUndocumentedMethod2{}
}

This update is free for all users who are current on their Software Assurance and Support Subscription

 

posted on Thursday, February 25, 2010 4:31:09 PM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Tuesday, December 22, 2009

New version of CodeIt.Right Enterprise Edition - build 1.9.09355 - is available for download now.

This version introduces new feature Merge Profiles that allows to compare and merge user configured profiles, enhances VSTS integration with the new "Add WorkItem" feature, adds command line version parameters and ability to load/unload CodeIt.Right in the menu and Add-In Manager.

MergeProfiles

This update is free for all users who are current on their Software Assurance and Gold Support Subscription

New in CodeIt.Right Enterprise v1.9:

  • New Merge Profiles feature allows to compare and merge user configured profiles
  • New "Add WorkItem" feature - create TFS WorkItem from a violation 
  • Added /metrics parameter to the command line utility to generate XML output for three metrics reports – "Member", "Type" and "Code"
  • Added /sendto parameter to the command line utility - send the violation/metrics output via email
  • CodeIt.Right can now be loaded/unloaded in the menu and Add-In Manager
  • Build server setup doesn't require Visual Studio on the build machine anymore 
  • "Built-in profile" option now is not selectable in the Analysis Module when one or more custom profiles deployed via Team Configuration Module
  • New Rules:
    • Specify CultureInfo (Globalization)
    • Specify IFormatProvider (Globalization)
    • Specify StringComparison (Globalization)
    • Avoid excessive complexity (Maintainability)
    • Avoid excessive inheritance (Maintainability)
    • Do not use deprecated properties of Response object (AspNet)
  • Fixed a number of bugs in the application and the rules...
posted on Tuesday, December 22, 2009 10:55:00 PM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Wednesday, October 28, 2009

Today we are releasing new version of CodeIt.Right - build 1.8.09300.

This version features complete ASP.NET support, it is compatible with VS2010 Beta 2 (in addition to VS2008, VS2005, VS2003), Add Rule dialog improvements - "Hide Rules in the Profile" and "Quick Search", 10+ new rules including new category "CodingStyle".

Those of you who are using CodeIt.Right with very large solutions may know of the memory limitation issue for the tools that live in the Visual Studio address space, aka "Out of Memory" exceptions. You will be excited to know we have addressed the issue in this version by introducing new "Memory Optimization" mode. The "Performance mode" is still on by default since it offers a little faster analysis but CodeIt.Right will offer to switch to the "Memory Optimization" option when you open a large solution or get the dreaded "Out of Memory" exception. You also are free to switch between the options manually.

Another change we made - we removed Sealed modifier for all built-in rules. This gives you even easier way to extend and customize existing rules by simply overriding just the methods you wanted changed. See Tutorial: Extending Existing Rules for a sample.

This update is free for all users who are current on their Software Assurance and Gold Support Subscription

New in CodeIt.Right v1.8:

  • Now compatible with VS2010 Beta 2, VS2008, VS2005 and VS2003
  • Finally complete ASP.NET support including refactorings in HTML markup.
  • Added Memory Optimization mode – allows to minimize the memory use at slightly lower reduces performance. This allows to solve the “Out of Memory” issue on large solutions.
  • Added Performance tab to the Options window – Best Performance/Memory Optimization.
  • Added new Exclude tab and moved all exclude tabs there
  • All Exclude tabs now support multi-select
  • New option to Exclude a Project
  • Added new “Add” button in Exclude Rule, Exclude File and Exclude Project tabs – the dialogs support multi-select.
  • Profile Editor -> Add Rule dialog has new option Hide Rules in the Profile which removes from the selection the rules that already exist in the selected profile.
  • Profile Editor -> Add Rule dialog has new Quick Search that filters the list for the rules that contain entered substring
    AddRule-QuickSearch
  • Added RuleID to rule help documentation.
  • Product license codes when entered are now activated on the SubMain server.
  • Auto Update wizard now shows Software Assurance & Gold Support subscription expiration date.
  • About window now shows Software Assurance & Gold Support subscription expiration date.
  • All web services – Auto Update, Error Reporting, Statistics and Activation – are now accessed over SSL protected HTTPS connection.
  • Removed Sealed modifier for all built-in rules. This allows for new easier way to extend and customize existing rules by simply overriding specific methods. See Tutorial: Extending Existing Rules for a sample.
  • Addressed issues related to incorrect source file encoding when Byte Order Mark (BOM) attribute was missing.
  • New Rules:
    • Abstract class should have at least one derive class (Design)
    • Interface should have at least one implementation (Design)
    • Project should have AssemblyInfo file (Design)
    • Do not place assembly attributes outside of AssemblyInfo file (Design)
    • Do not include multiple statements on a single line (CodingStyle)
    • Avoid single line If statement (CodingStyle)
    • Do not check for empty strings using Equals (Performance)
    • XML Comments should be spelled correctly (Spelling)
    • Avoid non-public fields in ComVisible value types (Interoperability)
    • Avoid static members in ComVisible types (Interoperability)
    • PInvokes should not be visible (Interoperability)
  • Fixed a number of bugs in the application and the rules...

Download

Download version 1.8.09300 here - http://submain.com/download/codeit.right 

Technorati Tags: , , , , ,

posted on Wednesday, October 28, 2009 12:57:12 AM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Monday, June 01, 2009

As announced earlier today we just closed the acquisition of the popular XML Comment helper tool GhostDoc. We, SubMain, will continue to evolve the tool and distribute it as a free product.

We are also announcing today the availability of the new version of GhostDoc v2.5.09150 which improves the user setup experience, adds support for Visual Studio 2010 Beta 1 and full support for Visual Basic.

Additionally, today we are making available a new version of CodeIt.Right (v1.6.09151) that adds the IntelliComment feature based on the GhostDoc algorithm and offers improved and automated generation of XML Comments.

We are very excited about taking over the future of an excellent tool such as GhostDoc! We are committed to maintaining this wonderful free tool and we welcome the community feedback and suggestions.

For more on the agreement, please see the press release and interview with Serge Baranovsky and Roland Weigelt - What's in the shop for GhostDoc?

New in GhostDoc v2.5:
  • Compatible with VS2010
  • Support for VB - GhostDoc now has full support for VB
    • Removed "Enable experimental support for VB" option in Settings.
  • Improved product setup experience
    • Single setup for all supported versions of Visual Studio - VS2005, VS2008 and VS2010.
    • Setup will detect older version installed and automatically uninstall it.
  • Converted from VS Add-In to VS Package
  • Resolved installation issues related to the VS Add-In model - by converting to VS Package
Download

Download GhostDoc v2.5.09150 here - http://submain.com/download/ghostdoc 

Download CodeIt.Right v1.6.09151 here - http://submain.com/download/codeit.right 

posted on Monday, June 01, 2009 2:25:56 PM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Tuesday, May 19, 2009
Click for a full-sized image

As you may know yesterday Microsoft released VS2010 Beta 1 to MSDN Subscribers. The Beta will also be publicly available for the rest of the world on Wednesday. This is long expected and very exciting new version of Visual Studio; and we here at SubMain are fully prepared to support the new shiny version!

While some companies make a big deal posting screenshots of the upcoming VS2010 versions and announcing availability of previews for their products within a month, we at SubMain have been working hard to give our customers a new fully VS2010 compatible version on the day of VS2010 Beta 1 release!

So ... today, within the 24 hours of the VS2010 Beta 1 availability, you can download new version of CodeIt.Right that runs in VS2010 (as well as VS2008, VS2005, VS2003) and fully understands the syntax changes in C# 4.0 and VB10! This is just of the many new features that come with this release - you can see the long list below.

With the VS2010's multi-monitor support and CodeIt.Right allows for even better performance as you keep violations up on one monitor while review source code and the changes on the other monitor.

Another great feature added in this version is the template based rules. We currently support T4 templates. The template based rules are simpler and more flexible alternative to writing custom rules using CodeIt.Right SDK.

Click for a full-sized image

Over the next couple of weeks we will be adding a tutorial on how to use and customize T4 templates in CodeIt.Right. Ping us if you want this sooner.

Give it a shot and let us know what you think!

This update is free for all users who are current on their Software Assurance and Gold Support Subscription

New in CodeIt.Right v1.6:

  • Compatible with VS2010
  • C# 4.0 and VB10 syntax support
    • Automatically Implemented Properties (VB.NET)
    • Generic Variance (VB.NET)
    • Multi-line lambda expressions that can contain statements (VB.NET)
    • Implicit line continuation (VB.NET)
    • Dynamic lookup (C#) - (the "dynamic" type)
    • Named and Optional parameters (C#)
    • Covariance and contravariance (C#)
  • Added T4 template based rules
    • Profile Editor supports editing and validation of T4 templates
    • Rule "Externally visible types and members should have XML comments" has been rewritten as a template based rule and is customizable now
    • Added Global Properties tab in Options - user configured properties to be used with the T4 templates
  • Spell-checking rules
    • Significantly improved performance, now suggested spellings lookup is only performed when the the Correction Options dropdown is clicked
    • Spell-checking rules - improved performance when use a secondary (non-English) dictionary
    • Spell-checking rules - renamed en_US.usr to complang.usr
  • Further improved ASP.NET support - rename refactoring now also corrects the ASP.NET page HTML markup server tag IDs and attributes
  • Context menus Check All, Clear All and Correct Checked are now context specific when clicked on file or project lines in the violations list
  • Improved performance for Check All, Clear All, Exclude Rule and Exclude File 
  • Analyze Project and Analyze File context menus in the violations list, see forum post 
  • Analyze Folder and Analyze Project context menus in the Solution Explorer
  • Synchronization of the file selected in the Solution Explorer with the violations list
  • About dialog - added subscription expiration date
  • Added "Don't show this exception again" checkbox to the unhandled exceptions dialog
  • Default Encapsulate Field correction for rules "Do not declare externally visible instance fields" and "Secured types should not expose fields" changed from "Create new property and update all references where the field is use" to "Rename the field, create new property with the original field name and do not update the field references" (for the public name has not changed), see forum post
  • Added new property ExcludeList to all Naming rules, see forum post 
  • Added new RuleTargets - Solution, Project, File
  • New Rules:
    1. Use constants where appropriate (Performance)
    2. Remove unused internal classes (Performance)
    3. Do not initialize unnecessarily (Performance)
    4. Source file name should be Pascal cased (General)
    5. Source file should contain only one public type (General)
    6. Source file name should match public type name (General)
    7. Enable Treat Compiler Warnings As Errors option (General)
    8. Enforce Warning Level 4 (General)
    9. Source file should have a header (General) - a T4 template based rule
  • more bug fixes

Known issues

We are releasing the product with one known issue this time for it is very minor.

  • Under VS2010 Beta 1 CodeIt.Right rule documentation links, like "More", "Tell me more..." don't work. This feature depends on the Visual Studio offline help module which was not shipped with VS2010 Beta 1. You still can use Rule Help in the Profile Editor. Rule documentation help works fine in VS2008, VS2005 and VS2003.

Download

Download version 1.6.09139 here - http://submain.com/download/codeit.right  

Technorati Tags: , , , , ,


posted on Tuesday, May 19, 2009 9:08:21 AM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Monday, December 22, 2008

Just before the holiday we are releasing new version of CodeIt.Right - build 1.2.08357. Download version 1.2.08357 today!

This release features addition of spell checking engine to CodeIt.Right SDK, workaround for the Out of Memory error on large solutions, 12 new rules and many bugs fixed.

Please share your feedback in the forums especially on the new spell checking rules - we are still working and improving them.

Note: The new spelling rules are included with the built-in profile but they are turned off by default - you will need to turn them on. For all rules you will need to add them into your custom profiles.

This update is free for all users who are current on their Software Assurance and Gold Support Subscription

Major changes in CodeIt.Right v1.2 :

  • New feature - Spell Checker, we extended SDK with spell checking engine which enables us to add new rules. This build includes en-US, en-GB, en-CA, en-AU, fr-FR, es-ES, es-MX dictionaries. You can add other languages using OpenOffice format dictionaries. We cannot distribute de-DE and it-IT dictionaries for they are GNU GPL licensed but you can download them from OpenOffice web site here as well as several dozen of other languages.
  • Added - Out Of Memory error handling - shows dialog that links to the page with recommendations on How to avoid Out Of Memory exceptions in Visual Studio by enabling is to use up to 3GB of virtual memory
  • Added - "Copy Violation" in the violation list allows to copy the highlighted violation information into clipboard. Alternatively use Ctrl+C.
  • "Exclude File" violation list context menu option is now enabled when right-clicked on the file name row
  • Added - Cache Folder Path option - allows to move CodeIt.Right cache directory (default - User\Application Data)
  • New Rules:
    1. Identifiers Should Be Spelled Correctly (Spelling)
    2. Comments Should Be Spelled Correctly (Spelling)
    3. Type link demands require inheritance demands (Security)
    4. Secured types should not expose fields (Security)
    5. Secure serialization constructors (Security)
    6. Review visible event handlers (Security)
    7. Review deny and permit only usage (Security)
    8. Review declarative security on value types (Security)
    9. Method security should be a superset of type (Security)
    10. Array fields should not be read only (Security)
    11. Aptca methods should only call aptca methods (Security)
    12. Wrap vulnerable finally clauses in outer try (Security)
  • CodeItRight.Cmd.exe changes:
  • many bugs fixed

Download build 1.2.08357 here - http://submain.com/download/codeit.right  

Technorati Tags: , , , , ,

posted on Monday, December 22, 2008 1:26:40 AM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Friday, September 19, 2008

New version of CodeIt.Right is out! You can download build 1.1.08262 today.

This is a major release even though we only added ".1" to the version. It includes .NET 3.5 support, Guidelines document template generation, option to analyze single file, enhanced SDK documentation, new rules, new command line version parameters and more. Please share your feedback in the forums.

This update is free for all users who are current on their Software Assurance and Gold Support Subscription

Major changes in CodeIt.Right v1.1 :

  • Support for .NET 3.5 (C# 3.0 and VB 9.0)
  • New feature - Generate Template in Profile Editor allows to generate guidelines document template based on the profile. Please note the XSL stylesheet only works with IE (not Firefox)
  • New feature - Analyze File in the Solution Explorer context menu - enables individual source code file analysis
  • New feature - Severity Threshold dropdown - allows to quickly filter violations by severity
  • Improved Profile Editor layout
  • Added "Rule Info" tab in Profile Editor
  • Pivot View allows to save your custom views (Save As)
  • Updated SDK documentation - now includes most every class, method and property of CodeIt.Right SDK. We will update the Online SDK documentation promptly.
  • Auto-Update now also includes the latest help file
  • New Options -> General -> Max violations to report (default Unlimited) to limit to the first N violations reported
  • New Rules:
    1. Do not declare read only mutable reference types (Security)
    2. Seal methods that satisfy private interfaces (Security)
    3. Secure GetObjectData overrides (Security)
    4. Assemblies should declare minimum security (Security)
    5. Override link demands should be identical to base (Security)
    6. Prefix member calls with self (Usage)
    7. Do not prefix calls with Base unless needed (Usage)
    8. Review suppress unmanaged code security usage (Security)
    9. Do not indirectly expose methods with link demands (Security)
    10. Security transparent code should not assert (Security)
    11. Secure asserts (Security)
    12. Code region name should be PascalCased (Naming)
  • CodeItRight.Cmd.exe improvements:
    • Added MsBuild and Nant tasks (SubMain.CodeItRight.MSBuild.dll and
      SubMain.CodeItRight.NAntBuild.dll)
    • Fixed /Quiet option
    • Added /OutXSL parameter
    • Added /CRData parameter
    • Added /severityThreshold parameter
    • Improved formatting of the output XML data file
    • Added return error codes
    • Removed key press required in the older version
    • see CodeItRight.Cmd.exe Command Line Options for details
  • Removed Alt shortcuts in the toolbar - they were conflicting with some of the Visual Studio
  • Renaming a parameter now also updates its name in XML comments
  • Added CodeRegion class in the SDK
  • Added "Expression" and "Code Region" to Rule targets
  • many bugs fixed

Download build 1.1.08262 here - http://submain.com/download/codeit.right  

Technorati Tags: , , , , ,

posted on Friday, September 19, 2008 3:55:47 PM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Friday, August 29, 2008

As promised last week, new version of PrettyCode.Print for .NET is now available for download. The new version adds support for .NET Framework 3.5 and Visual Studio 2008 as well as many bug fixes since the last release.

Although v2.0 (technically) marks a major version update, the upgrade is still free for current users. Here at SubMain we like to keep things simple :) Enjoy!

More details at http://submain.com/pcp.net

Download at http://submain.com/download

Technorati Tags: , , , ,

posted on Friday, August 29, 2008 2:43:50 PM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Tuesday, February 05, 2008

by Serge Baranovsky

CodeIt.Right is finally finished after about 3 years in the making. That's right, CodeIt.Right is Released! It is out in its all new shiny package :)

I would like to make a pause here and extend my deepest gratitude towards everyone who helped make this release possible. From the SubMain development team, the advisory board members, to everyone who participated in the community and contributed feedback over the year since we released the first public beta.

CodeIt.Right, my 7 years long dream come true. The tool it out! Cheers! (I truly believe that code analysis coupled with automatic refactoring will change the way .NET developer teams and solo developers work!)

With the touchy-feely stuff out of the way, let's get back to the actual product, shall we? :)

If you are new to CodeIt.Right:

What's next?

This not a road map per se, just highlights of where we are heading with CodeIt.Right over the next months:

  • We will keep publishing new rules as they are developed and will push them to you using the Auto-Update feature
  • We will publish more tutorials and how tos on using the product and developing your own custom rules using CodeIt.Right SDK
  • Create community section over at http://community.submain.com and allow custom developed rules shared with other users
  • Version v1.1 is coming in 4-6 weeks - .NET 3.5 syntax, merging profiles, Pivot View improvements, generating team guidelines document template from profile, and of course, more rules!
  • Version v2.0 is preliminarily scheduled for summer 2008 and will introduce VSTS integration and manual refactorings (we will merge CodeIt.Once into CodeIt.Right)

So, don't wait, go ahead, download CodeIt.Right - http://submain.com/download/codeit.right - play with it, explore the rules included in the box, get out of the box and try developing your own custom rules, share them, ask questions, tell us what you think!

Technorati Tags: , , , , ,

posted on Tuesday, February 05, 2008 7:50:33 PM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Friday, September 14, 2007

by Serge Baranovsky

This is a maintenance release of PrettyCode.Print for .NET and, for the most part, includes bug fixes - quite a few issues reported since the April 2007 update.

The update is free for current users.

Download at http://submain.com/download

Technorati Tags: , , , ,

posted on Friday, September 14, 2007 1:40:24 AM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Saturday, September 01, 2007

by Serge Baranovsky

We obtained exclusive distribution rights to the latest version of Steve Sartain's C#/VB .NET Coding Guidelines 100+ page ebook, and are offering free download from our website. From now on we will be maintaining the guidelines along with the author.

C#/VB .NET Coding Guidelines

Topics covered in C#/VB .NET Coding Guidelines include:

  • Naming Guidelines
  • Class Member Usage Guidelines
  • Guidelines for Exposing Functionality to COM
  • Error Raising & Handling Guidelines
  • Array Usage Guidelines
  • Operator Overloading Usage Guidelines
  • Guidelines for Casting Types
  • Common Design Patterns
  • Callback Function Usage
  • Time-Out Usage
  • Security in Class Libraries
  • Threading Design Guidelines
  • Formatting Standards
  • Commenting Code
  • Code Reviews
  • Additional Notes for VB .NET Developers

Here is what Andrew Sutton says about the ebook at vbCity: "Steve Sartain has come up with a very readable document that offers comprehensive guidelines for structuring code writing."

Better hurry up to download this excellent whitepaper on coding guidelines and best practices while supplies last! (Just kidding, our supplies of this electronic downloadable book are unlimited ;-))

Technorati Tags: , , , , ,

posted on Saturday, September 01, 2007 10:49:47 PM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Monday, April 30, 2007

by Serge Baranovsky

As promised earlier this month we released PrettyCode.Print for .NET update - build 1.7.07111. This update addresses Vista and 64 bit OS compatibility, complete VB8.0 and C# 2.0 syntax, setup improvements and bug fixes.

This version is free for current PrettyCode.Print for .NET users.

Changes in build 1.7.07111

  • ADDED: Vista and 64 bit OS compatibility 
  • IMPROVED: Complete VB 8.0 and C# 2.0 syntax support
  • IMPROVED: Setup detects older version and uninstalls if present 
  • ADDED: New parameter for PrettyCode.Print.AddInRegistration.exe to recreate VS.NET toolbar and menu commands
  • ADDED: Support for operators in VB and resolved number of related bugs
  • FIXED: Microsoft.VisualStudio.CommandBars error when installing PrettyCode.Print for VS2005
  • Other bug fixes (over 30 in total)

Download at http://submain.com/download

Technorati Tags: , , , ,

posted on Monday, April 30, 2007 1:20:15 AM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Tuesday, April 18, 2006

by Serge Baranovsky

It is my pleasure to announce the release of CodeIt.Once for .NET v1.0 - Add-In for Visual Studio.NET 2003 and Visual Studio 2005. We have been working hard and went through extensive Beta testing period to ensure we produce a high quality product.

First version of the product supports both VB.NET and C# and includes 14 refactoring operations:

See Refactoring Tutorials for the refactoring command descriptions and step-by-step tutorials.
 
For more detailed information check out our features page
 
Download VS2003 and VS2005 versions here - http://submain.com/download
 
Enjoy!

Technorati Tags: , , , ,

posted on Tuesday, April 18, 2006 2:22:58 AM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 Thursday, January 05, 2006

by Serge Baranovsky

We have released a new version of PrettyCode.Print for .NET v1.5 - support for VS2005, code regions, preprocess expressions and more..

PrettyCode.Print for .NET v1.5 is free update to our current PCP.NET v1 customers.

What's New in PCP.NET v1.5

We have listened to your feedback and have done a number of improvements to PCP.NET v1.

New Features in v1.5 (build 1.5.163):

  • Support for Visual Studio 2005, VB 8.0 and C# 2.0.
  • Added support for code regions - you can now filter your selection by regions
  • Added support for preprocess expressions
  • Persisting project selection info on reload/refresh and between sessions - will save you time when you print a project often
  • Syntax highlighted snippet area in the project selection window - long time requested feature is here. Makes the code snippet look much nicer and easier to read too.
  • Print Current Module feature (Add-In only) - loads selected file and preselects it - a quick way to print just one file. Available via "Print Current Module" right-click menu in VS Code Editor window or "Print Module" right-click menu in VS Solution Explorer.
  • New "Declaration Text" font setting allows to define a subset of of attributes for namespace, class, method declaration lines, i.e. Public Class MyClass..End Class or Private Sub MySub..End Sub. For example, you can make them bold now.
  • New "Number Of Lines" column in the Class Details grid for Methods and Fields.
  • and many smaller improvements and bug fixes

Download VS2003 and VS2005 builds here - http://submain.com/download

Technorati Tags: , , , ,

posted on Thursday, January 05, 2006 8:00:00 AM (Pacific Standard Time, UTC-08:00)    #    Comments [0]   
 
 
     
 
Home |  Products |  Services |  Download |  Purchase |  Support |  Community |  About Us |