User Chris Canal - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T08:56:54Zhttp://stackoverflow.com/feeds/user/5802http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer71What development book made the most impact on you as a developer?Chris Canal2008-09-16T13:48:48Z2009-11-26T20:24:21Z
<p>For me, <a href="http://oreilly.com/catalog/9780596007126/" rel="nofollow">Head First Design Patterns</a> was a book that made Design Patterns click for me. Once I had read it, I found I could return to GoF and take more away from it and it really helped my move on as a developer.</p>
<p>What book really made an impact of how you work as a developer?</p>
<p>Note: <strong>One book per answer</strong>; upvote any you agree with ;o)</p>
http://stackoverflow.com/questions/74032/whats-the-recommended-best-practice-for-using-iequalitycomparert1What's the recommended best practice for using IEqualityComparer<T>?Chris Canal2008-09-16T16:08:36Z2009-10-08T03:12:59Z
<p>I'm looking for real world best practice, how other people might have implented solutions with complex domains</p>
http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/63730#6373030Answer by Chris Canal for Confessions of your worst WTF Moment. (What not to do.)Chris Canal2008-09-15T15:05:59Z2009-09-22T01:00:29Z<p>Hit my credit card with 182 x £150 transactions. I then send refund requests, called them to ask what was going to happen and they didn't couldn't give me a better answer than "Wait and see"</p>
http://stackoverflow.com/questions/819040/how-to-know-query-generated-by-fluent-nhibernate/897937#8979373Answer by Chris Canal for How to know query generated by Fluent NHibernateChris Canal2009-05-22T13:49:01Z2009-05-22T13:49:01Z<p>You might also find this useful <a href="http://nhprof.com/" rel="nofollow">http://nhprof.com/</a></p>
http://stackoverflow.com/questions/81589/how-to-clear-connections-in-sql-server-20050How to clear connections in Sql Server 2005Chris Canal2008-09-17T09:53:51Z2009-05-01T12:46:23Z
<p>My workplace has sales people using a 3rd party desktop application that connects directly the a Sql Server and the software is leaving hundreds of sleeping connections for each user. Is there anyway to clear these connection programmatically?</p>
http://stackoverflow.com/questions/302393/including-all-dependencies3Including all dependenciesChris Canal2008-11-19T16:01:55Z2009-03-26T14:40:10Z
<p>I'm just starting out with WiX as I need to be able to automate building an MSI on our CI server. Is there anyway to automatically include all the dependencies of a project?</p>
http://stackoverflow.com/questions/222531/ienumerablestring-to-selectlist-no-value-is-selected5IEnumerable<string> to SelectList, no value is selectedChris Canal2008-10-21T16:28:41Z2009-03-19T10:40:21Z
<p>I have something like the following in an ASP.NET MVC application:</p>
<pre><code>IEnumerable<string> list = GetTheValues();
var selectList = new SelectList(list, "SelectedValue");
</code></pre>
<p>And even thought the selected value is defined, it is not being selected on the view. I have this feeling I'm missing something here, so if anyone can put me out my misery!</p>
<p>I know I can use an annoymous type to supply the key and value, but I would rather not add the additional code if I didn't have to.</p>
<p>EDIT: This problem has been fixed by ASP.NET MVC RTM.</p>
http://stackoverflow.com/questions/132277/active-directory-retrieve-user-information3Active Directory: Retrieve User informationChris Canal2008-09-25T09:16:34Z2009-03-10T03:44:02Z
<p>I've got a web application that is running against Windows Authentication using our Active Directory. I've got a new requirement to pull some personal information through from the Active Directory entry. What would be the easiest way to get access to this information?</p>
http://stackoverflow.com/questions/101903/asp-net-mvc-preview-5-resharper-weirdness1ASP.NET MVC Preview 5 & Resharper weirdnessChris Canal2008-09-19T13:41:41Z2009-02-19T18:50:54Z
<p>I've just created my first Preview 5 error and it doesn't seem to place nice with Resharper. All the C# in the Views are coming up with errors, things like <%= Html.Password("currentPassword") %> has the "currentPassword" highlighted with the following error: Argument type "System.String" is not assignable parameter type "string". </p>
<p>IList errors = ViewData["errors"] as IList; has the IList highlighted as "Can not resole symbol 'string'"</p>
<p>Has anyone seen this?</p>
http://stackoverflow.com/questions/503876/filter-child-collection-using-a-child-collection-of-the-child1Filter child collection using a child collection of the childChris Canal2009-02-02T16:48:50Z2009-02-13T17:06:33Z
<p>Err, I can't think of better title. Basically I have a class called MarketGroups, this has a child collection Markgroups that has a collection of MarketTypes and MarketTypes has a collection of MetaGroups.</p>
<p>I would like to be able to, in one query, load the Parent, and only return Child MarketGroups that have MarketTypes with one specific MetaGroup in its MetaGroup collection.</p>
<p>I am aware of this question: <a href="http://stackoverflow.com/questions/247571/filter-child-collection-returned-with-aggregate-root-using-nhibernate">http://stackoverflow.com/questions/247571/filter-child-collection-returned-with-aggregate-root-using-nhibernate</a> but is <strong>not</strong> the solution I'm looking for, I want to do this in code ideally as one query, but I wouldn't mind splitting it.</p>
<p>:)</p>
http://stackoverflow.com/questions/541415/how-to-return-first-object-of-a-collection-from-its-parent/541444#5414440Answer by Chris Canal for How to return first object of a collection from its parentChris Canal2009-02-12T14:22:31Z2009-02-12T14:37:18Z<p>This might be what your looking for:</p>
<pre><code>Page firstPage = Session.Linq<Page>()
.OrderBy(page => page.Index)
.FirstOrDefault(page=> page.Location.URL == "some-location-url");
</code></pre>
<p>I'm making the assumption that the page has a Location property that relates back to the Location it belongs to and the .Index would be the property you want to order with.</p>
http://stackoverflow.com/questions/514023/modelbinding-database-entities-in-aspnet-mvc/520354#520354-1Answer by Chris Canal for Modelbinding database entities in ASPNET MVCChris Canal2009-02-06T13:53:28Z2009-02-06T13:53:28Z<p>You don't actually have to hit the database. Simply setting the Id of the objects will be enough to set the relationship up, but watch your cascades. Make sure your cascde settings won't update the related object as it will clear the values.</p>
http://stackoverflow.com/questions/189280/problem-using-sqlite-memory-with-nhibernate7Problem using SQLite :memory: with NHibernateChris Canal2008-10-09T21:27:24Z2009-01-29T16:13:45Z
<p>I use NHibernate for my dataacess, and for awhile not I've been using SQLite for local integration tests. I've been using a file, but I thought I would out the :memory: option. When I fire up any of the integration tests, the database seems to be created (NHibernate spits out the table creation sql) but interfacting with the database causes an error.</p>
<p>Has anyone every gotten NHibernate working with an in memory database? Is it even possible? The connection string I'm using is this:</p>
<pre><code>Data Source=:memory:;Version=3;New=True
</code></pre>
http://stackoverflow.com/questions/353605/oxite-what-are-you-going-to-do-with-it/375017#3750172Answer by Chris Canal for Oxite: What are you going to do with it?Chris Canal2008-12-17T15:57:24Z2008-12-17T15:57:24Z<p>I would highly recommend staying clear of Oxite as an example of how to write an ASP.NET MVC application. In it's current form, it's fundamentally flawed and will do more damage than good.</p>
http://stackoverflow.com/questions/356570/select-object-when-a-property-equals-max-with-nhibernate0Select object when a property equals Max with NHibernateChris Canal2008-12-10T15:57:30Z2008-12-10T15:57:30Z
<p>We have a query that selects rows depending on the value of another, ie. the max. I don't think that really makes much sense, so here is the query:</p>
<pre><code>var deatched = DetachedCriteria.For<Enquiry>("e2")
.SetProjection(Projections.Alias(Projections.Max("Property"), "maxProperty"))
.Add(Restrictions.EqProperty("e2.EnquiryCode", "e.EnquiryCode"));
session.CreateCriteria(typeof(Enquiry), "e")
.Add(Subqueries.PropertyEq("Property", deatched))
.AddOrder(Order.Asc("EnquiryCode"));
</code></pre>
<p>My question is, is this the best way? Can anyone suggest a better way?</p>
http://stackoverflow.com/questions/333850/passing-web-context-to-a-service-in-asp-mvc-app/333874#3338741Answer by Chris Canal for Passing web context to a 'service' in ASP MVC appChris Canal2008-12-02T13:12:41Z2008-12-02T13:12:41Z<p>ASP.NET comes with System.Web.Abstractions that include HttpContextBase that you can use for dealing with the HttpContext in a testing situation.</p>
<p>I would personally abstract away the direct dependency on the HttpContext.</p>
http://stackoverflow.com/questions/92769/stop-subtext-fckeditor-messing-up-the-html0Stop SubText/FCKEditor messing up the HTMLChris Canal2008-09-18T13:58:14Z2008-12-01T16:19:14Z
<p>I'm trying to put together a blog, and have gone with SubText and I've just installed SyntaxHighlighter but it doesn't seem to work properly. SubText or FCKEditor seems to tamper with the HTMl, inlineing everything in the pre tags and placing line-breaks at the end of each line.</p>
<p>Bad times!</p>
<p>Anyone know how to stop this?</p>
http://stackoverflow.com/questions/149178/recommend-a-good-uk-based-dedicated-hosting-provider-that-supplies-20080Recommend a good UK based dedicated hosting provider that supplies 2008? [closed]Chris Canal2008-09-29T15:28:13Z2008-11-29T15:08:46Z
<p>I'm looking for any Uk based dedicated hosting provider that supplied Windows 2008.</p>
http://stackoverflow.com/questions/318964/strategies-for-using-nhibernate-to-generate-a-schema/323495#3234953Answer by Chris Canal for Strategies for using NHibernate to generate a schemaChris Canal2008-11-27T11:10:57Z2008-11-27T11:10:57Z<p>When testing, we use NHibernate to create the database, then a series of <a href="http://en.wikipedia.org/wiki/Builder_pattern" rel="nofollow">builders</a> to create the data for each test fixture. We also use Sqlite for these tests, so they are lightening fast.</p>
<p>Our builders look a something like this:</p>
<pre><code>public class CustomerBuilder : Builder<Customer>
{
string firstName;
string lastName;
Guid id = Guid.Empty;
public override Customer Build()
{
return new Customer() { Id = id, FirstName = firstName, LastName = }
}
public CustomerBuilder WithId(Guid newId)
{
id= newId;
return this;
}
public CustomerBuilder WithFirstName(string newFirstName)
{
firstName = newFirstName;
return this;
}
public CustomerBuilder WithLastName(string newLastName)
{
lastName = newLastName;
return this;
}
}
</code></pre>
<p>and usage:</p>
<pre><code>var customer = new CustomerBuilder().WithFirstName("John").WithLastName("Doe").Build();
</code></pre>
<p>Because every line of code is written with TDD, we build up a comprehensive suite of data from scatch and will generally refactor some of it to factories that will wrap the above and make it a breeze to get dummy data in.</p>
http://stackoverflow.com/questions/321467/best-practices-for-3-tier-development/321513#3215131Answer by Chris Canal for Best Practices for 3 Tier DevelopmentChris Canal2008-11-26T17:33:42Z2008-11-26T17:33:42Z<p>I would highly recommend looking into <a href="http://www.asp.net/mvc/" rel="nofollow">ASP.NET MVC</a>. It's a far better option for n-tier appliactions as it allows for a greater degree of Seperation Of Concerns. This leads to a more testable and maintanable application that can be achieved with ASP.NET</p>
http://stackoverflow.com/questions/313796/multiple-interface-injection-with-castle-windsor/319263#3192634Answer by Chris Canal for Multiple Interface injection with castle windsorChris Canal2008-11-25T23:32:11Z2008-11-25T23:32:11Z<p>As David said, you can't, but IHandlerSelector will let you take control. Check out the tests to get an idea of how to use them: <a href="https://svn.castleproject.org/svn/castle/trunk/InversionOfControl/Castle.Windsor.Tests/HandlerSelectorsTestCase.cs" rel="nofollow">https://svn.castleproject.org/svn/castle/trunk/InversionOfControl/Castle.Windsor.Tests/HandlerSelectorsTestCase.cs</a></p>
<p>Basically, you would do something like:</p>
<pre><code>public class WritenExamHandler : IHandlerSelector
{
public bool HasOpinionAbout(string key, Type service)
{
// Decision logic here
return somethingThatWouldBeTrueToSelectWritenExam && service == typeof(IExamCalc);
}
public IHandler SelectHandler(string key, Type service, IHandler[] handlers)
{
return handlers.Where(handler => handler.ComponentModel.Implementation == typeof (WritenExam)).First();
}
}
</code></pre>
<p>and then you register it with:</p>
<pre><code>container.Kernel.AddHandlerSelector(new WritenExamHandler());
</code></pre>
<p>This will allow you to easily deal with multi-tenency issues :)</p>
http://stackoverflow.com/questions/277438/abstracting-ioc-container-behind-a-singleton-doing-it-wrong6Abstracting IoC Container Behind a Singleton - Doing it wrong?Chris Canal2008-11-10T09:41:41Z2008-11-13T10:01:04Z
<p>Generally, I like to keep an application completely ignorant of the IoC container. However I have ran into problems where I needed to access it. To abstract away the pain I use a basic Singleton. Before you run for the hills or pull out the shotgun, let me go over my solution. Basically, the IoC singleton does absolutly nothing, it simply delegates to an internal interface that must be passed in. I've found this makes working with the Singleton less painful.</p>
<p>Below is the IoC wrapper:</p>
<pre><code>public static class IoC
{
private static IDependencyResolver inner;
public static void InitWith(IDependencyResolver container)
{
inner = container;
}
/// <exception cref="InvalidOperationException">Container has not been initialized. Please supply an instance if IWindsorContainer.</exception>
public static T Resolve<T>()
{
if ( inner == null)
throw new InvalidOperationException("Container has not been initialized. Please supply an instance if IWindsorContainer.");
return inner.Resolve<T>();
}
public static T[] ResolveAll<T>()
{
return inner.ResolveAll<T>();
}
}
</code></pre>
<p>IDependencyResolver:</p>
<pre><code>public interface IDependencyResolver
{
T Resolve<T>();
T[] ResolveAll<T>();
}
</code></pre>
<p>I've had great success so far with the few times I've used it (maybe once every few projects, I really prefer not having to use this at all) as I can inject anything I want: Castle, a Stub, fakes, etc.</p>
<p>Is this a slippery road? Am I going to run into potential issues down the road? </p>
http://stackoverflow.com/questions/282531/export-to-word-document-in-c/283941#2839412Answer by Chris Canal for Export to Word Document in C#Chris Canal2008-11-12T13:38:02Z2008-11-12T13:38:02Z<p>I use Aspose for working with Word, makes everything a breeze: <a href="http://www.aspose.com/" rel="nofollow">http://www.aspose.com/</a></p>
http://stackoverflow.com/questions/278151/extract-expression-tree-from-action2Extract Expression Tree From ActionChris Canal2008-11-10T15:30:40Z2008-11-10T15:59:59Z
<p>I'm just starting out playing around with Linq Expressions and I've hit a wall. I need to create an Expression Tree from an Action. Unfortunetly I can't get the Action as an Expression, this is basically what I've got to work with:</p>
<pre><code>public void Something(Action action){}
</code></pre>
<p>I need access to the body of the Action to extract variables and values.</p>
http://stackoverflow.com/questions/222300/asp-net-mvc-beta-previous-routedata-overrides-current-routedata/246604#2466041Answer by Chris Canal for Asp.Net MVC Beta: Previous RouteData overrides current RouteData?Chris Canal2008-10-29T12:29:17Z2008-10-29T12:29:17Z<p>The problem is the LifeStyle, I completetly overlooked the fact it was being defined, which means by default the controllers will use the Singleton lifestyle. Setting the LifeStyle to Transient for all controllers will sort this problem.</p>
http://stackoverflow.com/questions/223750/how-do-net-sites-hide-aspx-extension-of-their-files/223924#2239243Answer by Chris Canal for How do .NET sites hide .aspx extension of their files?Chris Canal2008-10-21T23:25:44Z2008-10-21T23:25:44Z<p>As other people have answered, StackOverflow is built using ASP.NET MVC and the ASP.NET MVC uses the System.Web.Routing. However System.Web.Routing is not part of ASP.NET MVC, it was RTMd with SP1, and means it's possible to use it without ASP.NET MVC. You can see how to use it with WebForms here: <a href="http://haacked.com/archive/2008/03/11/using-routing-with-webforms.aspx" rel="nofollow">http://haacked.com/archive/2008/03/11/using-routing-with-webforms.aspx</a> and here: <a href="http://www.codeplex.com/ASPNET35Routing" rel="nofollow">http://www.codeplex.com/ASPNET35Routing</a></p>
http://stackoverflow.com/questions/218556/send-document-to-printer-with-c7Send document to printer with C#Chris Canal2008-10-20T14:05:36Z2008-10-21T13:10:23Z
<p>I've been given a requirement for an internal web application to send documents to a printer transparently. The idea would be that the user can select their nearest printer, and the web application would send their print jobs to the printer they selected.</p>
<p>The first printer we have to roll out against are Canons, so my questions is: How would I go about sending a document to print aross the network to a specific Canon? The type of Cannon is question is an iR5570 and the documents that will be said will mainly be Word and PDFs</p>
<p>I'm currently working my way through the terrible, IE only Canon Developer site, but I'm kinda hoping someone can point me in the right direction or point me at a 3rd party assembly :)</p>
http://stackoverflow.com/questions/194836/what-is-the-code-coverage-percentage-on-your-project/194848#1948482Answer by Chris Canal for What is the code-coverage percentage on your project?Chris Canal2008-10-11T23:46:38Z2008-10-11T23:46:38Z<p>We run at 85% code coverage, but falling below it does not break the build. I think using code coverage as an important metric is a dangerous practice. Just because something is covered in a test does not mean the coverage is any good. We try to use it as guidance for the areas we are weakly covered, not as a hard fact.</p>
http://stackoverflow.com/questions/191556/should-i-pursue-asp-net-webforms-or-asp-net-mvc/191711#1917114Answer by Chris Canal for Should I pursue ASP.NET WebForms or ASP.NET MVCChris Canal2008-10-10T14:54:36Z2008-10-10T14:54:36Z<p>I would highly recommend ASP.NET MVC for any greenfield applications, especially any you wish to use TDD with. I recently migrated an ASP.NET application to MVC and it was a very very unpleasent experience. The main problem with the migration was that:</p>
<ol>
<li>Wasn't my code</li>
<li>Business Logic was tightly bound to HttpContext</li>
<li>Loads of the UI html was being generated in the code behinds</li>
</ol>
<p>If you want to start with a WebForms application and move it to MVC at a later date, remember to try and keep everything cohesive and loosly coupled.</p>
http://stackoverflow.com/questions/188647/what-would-you-pick-for-your-asp-net-webapp-nhibernate-linq-or-subsonic/191331#1913312Answer by Chris Canal for What would you pick for your ASP.NET webapp; nHibernate, Linq, or SubSonicChris Canal2008-10-10T13:42:06Z2008-10-10T13:42:06Z<p>I would use NHibernate. The Persistence Ignorance is one of the main selling ponts for me, and not being bound to the database is another. Entity Framework is deeply deeply flawed, more than just the lack of lazy loading. EF and LINQ2SQL are both new technolgoies, whereas NHibernate is very mature and has seen far more action.</p>
<p>Another good thing about NHibernate is the ability to switch databases without editing your. I use this for integration tests that are ran locally, <a href="http://blog.e4ums.co.uk/archive/2008/10/10/blisteringly-fast-integration-tests-with-nhibernate-and-sqlite.aspx" rel="nofollow">running them against SQLite and then SQL Server on the CI server</a>.</p>
http://stackoverflow.com/questions/825625/are-there-any-asp-net-mvc-reference-applications/825635#825635Comment by Chris Canal on Are there any ASP.Net MVC reference applicationsChris Canal2009-05-05T16:17:55Z2009-05-05T16:17:55ZThat was before the did a large refactoring, the code base is in far better state and would night recommend checking it out as how an Mvc app. should be done.http://stackoverflow.com/questions/503876/filter-child-collection-using-a-child-collection-of-the-child/546770#546770Comment by Chris Canal on Filter child collection using a child collection of the childChris Canal2009-02-17T11:45:11Z2009-02-17T11:45:11ZI ended up with a multicritera, so I'm gonna take this as the answer :)http://stackoverflow.com/questions/514023/modelbinding-database-entities-in-aspnet-mvc/520354#520354Comment by Chris Canal on Modelbinding database entities in ASPNET MVCChris Canal2009-02-07T00:55:30Z2009-02-07T00:55:30ZVery true, was a stupid answer because I didn't read the question properly!http://stackoverflow.com/questions/514023/modelbinding-database-entities-in-aspnet-mvc/516269#516269Comment by Chris Canal on Modelbinding database entities in ASPNET MVCChris Canal2009-02-06T13:51:01Z2009-02-06T13:51:01ZHitting the database is the ModeBinder isn't a great idea. Also, the binder executes BEFORE ActionFilters, so keep that in mind when accessing the database from bindershttp://stackoverflow.com/questions/371758/controllers-handle-application-flow-so-where-does-my-business-logic-go/371824#371824Comment by Chris Canal on Controllers handle application flow, so where does my business logic go?Chris Canal2008-12-17T15:55:19Z2008-12-17T15:55:19ZOxite is a mess of an ASP.NET MVC application and should be avoided like the plague!http://stackoverflow.com/questions/333850/passing-web-context-to-a-service-in-asp-mvc-app/333874#333874Comment by Chris Canal on Passing web context to a 'service' in ASP MVC appChris Canal2008-12-08T14:46:34Z2008-12-08T14:46:34ZI would question even WebInstanceService. Does the service need to know it's from the web?http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309366#309366Comment by Chris Canal on Defend PHP; convince me it isn't horribleChris Canal2008-11-21T17:22:07Z2008-11-21T17:22:07Z"are just annoyances, you can ignore them or work around them." I would class them as more than annoyances. One of the corner stones of good software is consistency. If your language of choice is an inconsistent mess like PHP, then the chances of consistent apps being developed on it are lower.http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309420#309420Comment by Chris Canal on Defend PHP; convince me it isn't horribleChris Canal2008-11-21T16:56:58Z2008-11-21T16:56:58Z"such as C#, you spend a lot of time casting your data types for use in various objects." Errr, no you don't! You might want to look into generics.http://stackoverflow.com/questions/302393/including-all-dependencies/302530#302530Comment by Chris Canal on Including all dependenciesChris Canal2008-11-19T16:45:38Z2008-11-19T16:45:38ZDiscovered heat about 10 minutes ago. Got the dependency list now, so I don't have to type it out. Looks promising :Dhttp://stackoverflow.com/questions/298976/c-is-there-a-better-alternative-than-this-to-switch-on-type/298994#298994Comment by Chris Canal on C# - Is there a better alternative than this to 'switch on type'?Chris Canal2008-11-18T16:00:38Z2008-11-18T16:00:38ZI've used this technique alot in the past, usually before moving to an IoC Containerhttp://stackoverflow.com/questions/298456/mail-merge-in-c-with-n-copies/298495#298495Comment by Chris Canal on Mail merge in C# with n copiesChris Canal2008-11-18T11:33:35Z2008-11-18T11:33:35ZAspose.Word is an awesome tool! Highly recommend it!http://stackoverflow.com/questions/278151/extract-expression-tree-from-action/278206#278206Comment by Chris Canal on Extract Expression Tree From ActionChris Canal2008-11-10T15:58:35Z2008-11-10T15:58:35ZThat's what I thought. This is an Action coming from a Boo file, so luckly I can get access to the Boo expressions and get what I need :)http://stackoverflow.com/questions/218556/send-document-to-printer-with-c/218677#218677Comment by Chris Canal on Send document to printer with C#Chris Canal2008-10-20T15:15:51Z2008-10-20T15:15:51ZI'm an idiot, I should have checked the Aspose documentation! Thankshttp://stackoverflow.com/questions/218556/send-document-to-printer-with-c/218677#218677Comment by Chris Canal on Send document to printer with C#Chris Canal2008-10-20T14:57:36Z2008-10-20T14:57:36ZI have full control of the deployment enviroment, it's an internal intranet application. Office interop/autmation is horrible, and while the documents are generated by C#, we use Aspose.Words. I can accept using interop.automation for printing, going to give it a try.http://stackoverflow.com/questions/184063/code-coverage-tools-for-vs-2008/200642#200642Comment by Chris Canal on Code coverage tools for VS 2008Chris Canal2008-10-14T10:26:00Z2008-10-14T10:26:00ZIt's a good idea to have your test's in a seperate project/assembly