User Brett Veenstra - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T18:18:34Zhttp://stackoverflow.com/feeds/user/307http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2530/how-do-you-disable-browser-autocomplete-on-web-form-field-input-tag20How do you disable browser Autocomplete on web form field / input tag?Brett Veenstra2008-08-05T16:22:32Z2009-11-22T05:15:53Z
<p>How do you disable Autocomplete in the major browsers for a specific input (or form field)?</p>
http://stackoverflow.com/questions/1771995/calculate-fiscal-year-in-sql-server/1772029#17720295Answer by Brett Veenstra for Calculate fiscal year in SQL ServerBrett Veenstra2009-11-20T17:24:54Z2009-11-20T17:35:46Z<p>I suggest you use a User-Defined Function based on the Fiscal year of your application.</p>
<pre><code>CREATE FUNCTION dbo.fnc_FiscalYear(
@AsOf DATETIME
)
RETURNS INT
AS
BEGIN
DECLARE @Answer INT
-- You define what you want here (September being your changeover month)
IF ( MONTH(@AsOf) < 9 )
SET @Answer = YEAR(@AsOf) - 1
ELSE
SET @Answer = YEAR(@AsOf)
RETURN @Answer
END
GO
</code></pre>
<p>Use it like this:</p>
<pre><code>SELECT dbo.fnc_FiscalYear('9/1/2009')
SELECT dbo.fnc_FiscalYear('8/31/2009')
</code></pre>
http://stackoverflow.com/questions/54606/what-free-software-can-i-use-to-create-ui-mockups14What free software can I use to create UI mockups?Brett Veenstra2008-09-10T16:38:27Z2009-11-19T19:17:59Z
<p>What are good Open Source / Free software packages that let you design GUIs quickly, like "on a napkin" style, but also give a bit of polish that you could throw into a slide deck? Preference would be to use some clipart/objects ala Visio, but not required.</p>
<p>NOT:</p>
<ul>
<li>Visio</li>
<li>PowerPoint</li>
<li>KeyNote</li>
<li>OmniGraffe</li>
<li>Balsamiq (althought it's worth the money)</li>
<li>Sketchflow</li>
</ul>
http://stackoverflow.com/questions/1685088/binding-to-commands-in-winforms/1763715#17637150Answer by Brett Veenstra for Binding to commands in WinFormsBrett Veenstra2009-11-19T14:36:40Z2009-11-19T14:36:40Z<p>I've attached <code>ICommand</code> objects to the <code>Tag</code> property of <code>Button</code> and <code>MenuItem</code> objects before.</p>
<p>Then, I just see if I can cast and run it if I can, example:</p>
<pre><code> private void button1_Click(object sender, EventArgs e)
{
ICommand command = ((Control)(sender)).Tag as ICommand;
if (command != null)
{
command.Execute();
}
}
</code></pre>
<p>For even an easier life, try subclassing the controls (e.g. <code>Button</code>, <code>MenuItem</code>)</p>
http://stackoverflow.com/questions/1728336/when-creating-a-new-record-how-do-i-fill-some-fields-with-values-from-the-filter/1756536#17565361Answer by Brett Veenstra for When creating a new record, how do I fill some fields with values from the filter?Brett Veenstra2009-11-18T14:50:57Z2009-11-18T14:50:57Z<p>I'd use an <code>Object Factory</code> hooked into the New button onclick. I'd initialize the <code>Factory</code> with either the <code>Filter</code> values or an interface to the View so that the Factory can return the properly initialized objects.</p>
http://stackoverflow.com/questions/1663804/how-do-you-determine-the-recommended-ado-net-batch-size-in-the-real-world0How do you determine the recommended ADO.NET Batch Size in the Real World?Brett Veenstra2009-11-02T21:26:03Z2009-11-05T01:18:48Z
<p><strong>NOTE:</strong> I'm not looking for the answer from <a href="http://msdn.microsoft.com/en-us/library/aadf8fk2.aspx" rel="nofollow">MSDN</a>.</p>
<p>How have you gone about determining the proper ADO.NET batch size value for your given database / application? What factors led to your decision and what experience can you share?</p>
<p>Using Fluent NHibernate, I'm currently using something like:</p>
<pre><code>var sessionFactory = Fluently.Configure().Database(
MsSqlConfiguration.MsSql2005.ConnectionString(c => c.FromConnectionStringWithKey("connString"))
.AdoNetBatchSize(50)
)
.Mappings(m => m.FluentMappings.AddFromAssemblyOf<Foo>()).BuildSessionFactory();
</code></pre>
<p>From my understanding this will gather up to 50 statements at a time before sending them through the Connection object to the server for processing.</p>
http://stackoverflow.com/questions/2260/what-is-test-driven-development-tdd8What is Test Driven Development (TDD)?Brett Veenstra2008-08-05T13:14:30Z2009-11-04T16:25:34Z
<p>What is TDD (Test Driven Development)</p>
<p>Please include both benefits and drawbacks, as well as tools for your taste.</p>
http://stackoverflow.com/questions/730849/mygeneration-template-creation-tutorials/1670052#16700520Answer by Brett Veenstra for MyGeneration Template Creation TutorialsBrett Veenstra2009-11-03T20:50:20Z2009-11-03T20:50:20Z<p>Check the following resources:</p>
<ul>
<li><a href="http://www.codeproject.com/KB/dotnet/GriffinMyGen.aspx" rel="nofollow">Code Project Overview</a></li>
<li><a href="http://www.mygenerationsoftware.com/TemplateLibrary/Article/?guid=485028ae-85bc-4c5f-acb4-27bd4db16363" rel="nofollow">Introduction by MyGenerationSoftware Team</a></li>
<li><a href="http://www.mygenerationsoftware.com/TemplateLibrary/Articles/" rel="nofollow">MyGenerationSoftware TemplateLibrary Articles</a></li>
</ul>
http://stackoverflow.com/questions/1337255/how-can-i-enforce-a-specific-version-of-the-net-framework/1662615#16626151Answer by Brett Veenstra for How can I enforce a specific version of the .net frameworkBrett Veenstra2009-11-02T17:34:45Z2009-11-03T13:19:30Z<p>Assuming you're targeting .NET 2.0 and above... your build could fail if you detect references to System.Core or other 3.x assemblies (e.g. WPF) in References of your projects.</p>
<p><strong>UPDATE</strong></p>
<p>You could start with checking inside each <code>.PROJ</code> file for:</p>
<pre><code><TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</code></pre>
<p>Then, inside the <code><ItemGroup></code> tag:</p>
<pre><code><Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
</code></pre>
<p>This could be a custom NAnt task or write your own parser to look for these nodes and fail the build.</p>
http://stackoverflow.com/questions/1662464/how-to-manage-multiple-clients-with-slightly-different-business-rules/1662517#166251710Answer by Brett Veenstra for How to manage multiple clients with slightly different business rules?Brett Veenstra2009-11-02T17:12:32Z2009-11-03T13:15:19Z<p>I would recommend <strong>against</strong> maintaining separate code branches <em>per customer</em>. This is a nightmare to maintain working code against your Core.</p>
<p>I do recommend you do implement the <a href="http://www.dofactory.com/patterns/patternstrategy.aspx" rel="nofollow">Strategy Pattern</a> and cover your "customer customizations" with automated tests (e.g. Unit & Functional) whenever you are changing your Core.</p>
<p><strong>UPDATE:</strong></p>
<p>I recommend that before you get <em>too many customers,</em> you need to establish a system of creating and updating each of their websites. How involved you get is going to be balanced by your current revenue stream of course, but you should have an end in mind.</p>
<p>For example, when you just signed up Customer X (hopefully all via the web), their website will be created in XX minutes and send the customer an email stating it's ready.</p>
<p>You definitely want to setup a <em>Continuous Integration (CI)</em> environment. <a href="http://www.jetbrains.com/teamcity/" rel="nofollow">TeamCity</a> is a great tool, and free.</p>
<p>With this in place, you'll be able to check your updates in a staging environment and can then apply those patches across your production instances.</p>
<p><strong>Bottom Line:</strong> Once you get over a handful of customers, you need to start thinking about automating your operations and your deployment as yet another <strong>application</strong> to itself.</p>
http://stackoverflow.com/questions/1128091/is-there-a-good-strongly-typed-way-to-do-propertychanged-events-in-c/1662580#16625800Answer by Brett Veenstra for Is there a good strongly typed way to do PropertyChanged events in C#?Brett Veenstra2009-11-02T17:23:48Z2009-11-02T17:23:48Z<p>You should check out this <a href="http://blog.m.jedynak.pl/2009/02/static-typed-propety-names.html" rel="nofollow">blog post</a>. It gives you the ability to do this:</p>
<pre><code>string propertyName = TypeHelper.GetPropertyName<User>(u => u.LastProjectCode);
PropertyInfo property1 = TypeHelper.GetProperty((SomeClass o) => o.InstanceProperty.Length);
PropertyInfo property2 = TypeHelper.GetProperty(() => SomeClass.StaticProperty.Length);
</code></pre>
<p>Renames in Visual Studio/Resharper/Refactor Pro should work for you then.</p>
http://stackoverflow.com/questions/6484/how-do-you-mock-a-sealed-class10How do you mock a Sealed class?Brett Veenstra2008-08-09T00:14:22Z2009-10-31T18:34:36Z
<p><a href="http://www.google.com/search?q=how%20to%20mock%20sealed%20class" rel="nofollow">Mocking sealed classes</a> can be quite a pain. I currently favor an <a href="http://en.wikipedia.org/wiki/Adapter_pattern" rel="nofollow">Adapter pattern</a> to handle this, but something about just keeps feels weird. </p>
<p><strong>So, What is the best way you mock sealed classes?</strong></p>
<p><em>Java answers are more than welcome</em>. In fact, I would anticipate that the Java community has been dealing with this longer and has a great deal to offer.</p>
<p>But here are some of the .NET opinions:</p>
<ul>
<li><a href="http://haacked.com/archive/2007/08/19/why-duck-typing-matters-to-c-developers.aspx" rel="nofollow">Why Duck Typing Matters for C#
Develoepers</a> </li>
<li><a href="http://cs.rthand.com/blogs/blog_with_righthand/archive/2008/07/22/Creating-wrappers-for-sealed-and-other-types-for-mocking.aspx" rel="nofollow">Creating wrappers
for sealed and other types for
mocking</a></li>
<li><a href="http://weblogs.asp.net/cibrax/archive/2008/05/16/unit-tests-for-wcf.aspx" rel="nofollow">Unit tests for WCF (and Moq)</a></li>
</ul>
http://stackoverflow.com/questions/1551/how-to-think-in-oo16How to Think in OOBrett Veenstra2008-08-04T19:56:05Z2009-10-31T05:21:56Z
<p>What is the best book/resource for the transition from procedural to object-oriented programming? Is there a good online Dojo, <a href="http://en.wikipedia.org/wiki/Kata" rel="nofollow">Kata</a>, or a book you can recommend?</p>
<p><strong>EDIT</strong> </p>
<p>I'm looking for the answer to be something more concrete than what is OO, but rather has to transition from a procedural-based programmer to someone who gets it. The winning answer would contain thoughts on SOLID, as well as a "workout plan" for increasing our skills in design and development that fully leverages OO.</p>
http://stackoverflow.com/questions/888148/visual-studio-error-pfx-error-importing-key-object-already-exists1Visual Studio Error: PFX - Error Importing Key / Object already existsBrett Veenstra2009-05-20T14:11:25Z2009-10-29T12:52:11Z
<p>I have a VS 2008 ClickOnce solution that I am attempting to compile with "Sign Manifest" turned on.</p>
<p>With this option checked, I am prompted for my PFX's password, and upon entering the correct password I receive the error: "Error Importing Key" / "Object already exists".</p>
<p>I'm sure I've hosed something.</p>
<p>I've tried to run the "CERTUTIL -importPFX -user .pfx AT_SIGNATURE" to no avail.</p>
http://stackoverflow.com/questions/1444738/using-ninject-with-entity-framework/1637843#16378431Answer by Brett Veenstra for Using Ninject With Entity FrameworkBrett Veenstra2009-10-28T15:01:38Z2009-10-28T15:01:38Z<p>Try something like:</p>
<pre><code>[Inject]
public SqlCatelogRepository(){
_dataContext = kernel.Get<SQLDb>();
//EF Entity, should pickup connection settings from web.config
}
</code></pre>
<p>This will give NInject a chance to intercept your activation. Then your mappings can apply.</p>
<p>You might want to check out the "Service Locator" approach that Nate wrote about: <a href="http://kohari.org/2008/06/18/playing-nice-with-service-locators/" rel="nofollow">http://kohari.org/2008/06/18/playing-nice-with-service-locators</a></p>
http://stackoverflow.com/questions/1180343/querying-email-addresses-other-than-the-primary-in-active-directory/1637808#16378080Answer by Brett Veenstra for Querying email addresses other than the primary in Active DirectoryBrett Veenstra2009-10-28T14:56:42Z2009-10-28T14:56:42Z<p>Did you try to CAST the <code>proxyAddresses</code> field manually in your <code>OPENQUERY</code> statement?</p>
http://stackoverflow.com/questions/1483766/is-this-mbunit-test-really-doing-anything-significant/1637787#16377870Answer by Brett Veenstra for Is this mbunit test really doing anything significant?Brett Veenstra2009-10-28T14:53:48Z2009-10-28T14:53:48Z<p>When writing a test, you first want it to exercise the code to fail in the way you expect (either expected functionality of new code or current behavior). <strong>Only after that</strong> do you craft your code or modify the test to get things to pass. So, if this is your main question concerning this test, I recommend you step back and ask yourself what are you really trying to test.</p>
<p>The code you posted smells more like an <a href="http://en.wikipedia.org/wiki/Integration%5Ftesting" rel="nofollow">Integration Test</a> than a <a href="http://en.wikipedia.org/wiki/Unit%5Ftesting" rel="nofollow">Unit Test</a>, which are you trying to do? Your comments suggest you're worried about inserts into the database, <em>yet you're mocking some objects</em>. If a unit test, I'm surprised to see you are initializing so many concrete objects manually (e.g. UserProfileManager). Where does your <code>MockDataProvider</code> actually enter the execution path?</p>
http://stackoverflow.com/questions/1637485/how-to-use-net-3-x-features-in-net-2-0-visual-studio-20081How to use .NET 3.x features in .NET 2.0 (Visual Studio 2008)Brett Veenstra2009-10-28T14:10:58Z2009-10-28T14:18:00Z
<p>You're stuck with targeting .NET 2.0 in Visual Studio 2008, but you'd like to use all the latest goodness from .NET 3.x features, like:</p>
<ul>
<li>LINQ</li>
<li>Extension Methods</li>
<li>Lambdas</li>
</ul>
<p>What can one do to enable this awesomeness?</p>
<p><strong>EDIT:</strong> I had not originally found the post: <a href="http://stackoverflow.com/questions/173080/c-net-3-0-3-5-features-in-2-0-using-visual-studio-2008">http://stackoverflow.com/questions/173080/c-net-3-0-3-5-features-in-2-0-using-visual-studio-2008</a>. Go there for an answer.</p>
http://stackoverflow.com/questions/63379/passing-impersonation-token-on-a-managed-thread-to-an-unmanaged-thread/1633475#16334750Answer by Brett Veenstra for Passing impersonation token on a Managed Thread to an Unmanaged ThreadBrett Veenstra2009-10-27T20:30:03Z2009-10-27T20:30:03Z<p>Assuming WMV player runs outside your AppDomain, I would try to host the WPF / Silverlight media player to access the file over the network.</p>
http://stackoverflow.com/questions/63379/passing-impersonation-token-on-a-managed-thread-to-an-unmanaged-thread/1633464#16334641Answer by Brett Veenstra for Passing impersonation token on a Managed Thread to an Unmanaged ThreadBrett Veenstra2009-10-27T20:28:44Z2009-10-27T20:28:44Z<p>Have you tried using <a href="http://msdn.microsoft.com/en-us/library/system.appdomain.setthreadprincipal.aspx" rel="nofollow"><code>SetThreadPrincipal</code></a> method off <code>AppDomain</code>?</p>
<p>Example:</p>
<p><code>IPrinicipal userPrincipal = new MyCustomPrincipal();</code></p>
<p><code>AppDomain currentDomain = AppDomain.CurrentDomain;</code></p>
<p><code>currentDomain.SetThreadPrincipal(userPrincipal);</code></p>
<p>You mentioned in your question, that WMV seems to run unmanaged, so if that premise is correct, this really shouldn't work (see my second answer).</p>
http://stackoverflow.com/questions/1403974/how-can-i-continuously-queueuserworkitems-but-without-queuing-them-all-at-once/1633388#16333880Answer by Brett Veenstra for How can I continuously QueueUserWorkItems but without queuing them all at once?Brett Veenstra2009-10-27T20:15:23Z2009-10-27T20:15:23Z<p>It looks like you need a Master process control class that governs the amount of workers that are firing off and keeps the Queue full.</p>
<p>You could work with two queues then: </p>
<ol>
<li>One to hold all the items you need to scrape</li>
<li>Second to do the work</li>
</ol>
<p>This Master/Governor object would then keep a loop until all your items from Queue #1 are gone and it would keep adding to Queue #2 when you have available cycles.</p>
http://stackoverflow.com/questions/1632440/crud-class-library-design-to-return-useful-messages-about-business-logic-failure/1633338#16333381Answer by Brett Veenstra for CRUD Class Library Design, to return useful messages about business logic failure, that is not exceptionalBrett Veenstra2009-10-27T20:04:54Z2009-10-27T20:04:54Z<p>You really should check out Rocky Lhotka's implementation of Validation Rules in his <a href="http://www.lhotka.net/cslanet/download.aspx" rel="nofollow">CSLA framework</a>.</p>
<p><strong>NOTE:</strong> I did <em>not</em> say to use his framework en masse, as it has some coupling issues that does break some SRP efforts in the latest .NET development trends.</p>
<p>But, his framework does make use of "automatic" notification up to the UI layer and integration with validation error messages with support for Web/Winforms controls.</p>
http://stackoverflow.com/questions/1440093/specification-pattern-defined-in-domain/1525886#15258861Answer by Brett Veenstra for Specification Pattern defined in DomainBrett Veenstra2009-10-06T14:22:08Z2009-10-06T14:22:08Z<p>Have you considered mapping your generic Specifications into an <code>Expression</code> tree that would translate into proper L2S syntax? It seems that is the main problem you are hitting here. The Specification pattern isn't the problem, but the <strong>mapping to L2S</strong> is.</p>
http://stackoverflow.com/questions/2563/what-is-a-good-web-based-grid-that-accepts-excel-clipboard-data1What is a good web-based Grid that accepts Excel clipboard data?Brett Veenstra2008-08-05T16:47:28Z2009-09-17T19:48:53Z
<p>Any good recommendations for a platform agnostic (i.e. Javascript) grid control/plugin that will accept pasted Excel data and can emit Excel-compliant clipboard data during a Copy?</p>
<p>I believe Excel data is formatted as CSV during "normal" clipboard operations.</p>
http://stackoverflow.com/questions/1149076/ninject-howto-setup-bindings-based-upon-dependency-chain1Ninject: Howto setup Bindings based upon Dependency ChainBrett Veenstra2009-07-19T02:07:40Z2009-09-14T07:43:31Z
<p>Ok Dependency Ninja's, here's one for you...</p>
<p>I want to change the way Ninject builds a dependency based upon the type I'm requesting from the Kernel.</p>
<p>I have a DbConnectionFactory class with the following constructors:</p>
<pre><code> public DbConnectionFactory()
: this(MyDatabase.ConnectionString)
{
}
public DbConnectionFactory(string connectionString)
: this(DbProviderFactories.GetFactory("System.Data.SqlClient"), connectionString)
{
}
</code></pre>
<p>For the "default" binding, I want Ninject to use the parameterless constructor:</p>
<pre><code> this.Bind<IDbConnectionFactory>().To<DbConnectionFactory>();
</code></pre>
<p>Certain classes in my code need Ninject to supply the connectionString paramter. I've tried to setup the binding like so:</p>
<pre><code> this.Bind<IDbConnectionFactory>().To<DbConnectionFactory>().Only(
When.Context.InstanceOf(typeof(IRepository))).WithArgument(
"connectionString", MyOtherDatabase.ConnectionString);
</code></pre>
<p>However, I only ever get Ninject to use the default constructor.</p>
<p>I must be missing something obvious!</p>
http://stackoverflow.com/questions/2284/how-to-contribute-code-back-to-an-open-source-project8How to contribute code back to an Open Source project?Brett Veenstra2008-08-05T13:25:29Z2009-08-22T19:28:46Z
<p>If you're following an Open Source project and would like to contribute code changes, what will you need to do?</p>
http://stackoverflow.com/questions/1262497/how-to-convert-seconds-to-hhmmss-using-t-sql0How to convert Seconds to HH:MM:SS using T-SQLBrett Veenstra2009-08-11T19:46:50Z2009-08-11T20:00:47Z
<p>The situation is you have a value in Seconds (XXX.XX), and you want to convert to HH:MM:SS using T-SQL.</p>
<p>Example:</p>
<ul>
<li>121.25 s becomes 00:02:01.25</li>
</ul>
http://stackoverflow.com/questions/1167309/cvs-bridge-to-svn0CVS Bridge to SVNBrett Veenstra2009-07-22T18:41:06Z2009-07-22T18:59:52Z
<p>I know there is <a href="http://www.tortoisecvs.org/" rel="nofollow">TortoiseCVS</a>, but I'm wondering if there is an easy way of sucking down source code in a CVS repository, just using SVN tools (without having to install CVS tools).</p>
<p>Since SVN seems to have taken the preferred spot in OSS, I have to believe somebody has written a tool that will map CVS databases to SVN repositories.</p>
<p><strong>EDIT</strong>
Based on a few responses, while migrating off of CVS to SVN is cool, mostly I'm looking for a way for me to use my SVN client to pull from a CVS database with little or no fuss, much like you can do with <a href="http://www.codeplex.com/SvnBridge" rel="nofollow">SVNBridge</a> (a real-time SVN bridge to TFS).</p>
http://stackoverflow.com/questions/1140310/how-do-i-find-the-currently-selected-or-active-row-in-an-ultragrid1How do I find the currently selected (or active) Row in an UltraGridBrett Veenstra2009-07-16T21:06:28Z2009-07-21T14:00:09Z
<p>Using the Infragistics UltraGrid (e.g. <code>myGrid</code>), I want to:</p>
<ol>
<li>Hook an event that will fire when active row is changed (selected, clicked, etc).</li>
<li>Do something with the selection</li>
</ol>
<p><strong>SUMMARY ANSWER</strong></p>
<ol>
<li>Subscribe to event <code>AfterRowActivate</code></li>
<li>Get a reference to <code>myGrid.ActiveRow</code></li>
</ol>
http://stackoverflow.com/questions/1045983/how-to-push-sqlclr-updates-to-your-ci-server0How to push SQLCLR updates to your (CI) serverBrett Veenstra2009-06-25T20:12:58Z2009-07-21T06:00:54Z
<p>I'm re-using some .NET code between SQL 2005 server and WinForm clients using SQLCLR.</p>
<p>This code has dependencies beyond .NET 2.0 which means I have to add these assemblies on the server machine (e.g. <code>CREATE ASSEMBLY</code>).</p>
<p>I'm trying to do this as part of a CI build and am wondering what methods have worked best.</p>
http://stackoverflow.com/questions/1487777/at-which-stage-does-sqlbulkcopy-check-constraintsComment by Brett Veenstra on At which stage does SqlBulkCopy check constraints?Brett Veenstra2009-11-20T19:12:09Z2009-11-20T19:12:09ZI would use SQL Profiler to determine the answer. Perhaps FK's are disabled at the beginning and applied at the end.http://stackoverflow.com/questions/1771995/calculate-fiscal-year-in-sql-server/1772029#1772029Comment by Brett Veenstra on Calculate fiscal year in SQL ServerBrett Veenstra2009-11-20T18:34:00Z2009-11-20T18:34:00ZTrue, using a UDF consolidates your logic in a more protected way than table based approaches do. http://stackoverflow.com/questions/1771995/calculate-fiscal-year-in-sql-server/1772026#1772026Comment by Brett Veenstra on Calculate fiscal year in SQL ServerBrett Veenstra2009-11-20T17:58:48Z2009-11-20T17:58:48ZCompany's fiscal year <i>can be changed</i> in coordination with your government. There are limitations of course, but it can be done (in the US as well).http://stackoverflow.com/questions/1771995/calculate-fiscal-year-in-sql-server/1772007#1772007Comment by Brett Veenstra on Calculate fiscal year in SQL ServerBrett Veenstra2009-11-20T17:37:14Z2009-11-20T17:37:14ZFiscal years are what you file with your taxing authority. It's only your accountants sanity that drives this.http://stackoverflow.com/questions/1771995/calculate-fiscal-year-in-sql-server/1772007#1772007Comment by Brett Veenstra on Calculate fiscal year in SQL ServerBrett Veenstra2009-11-20T17:26:19Z2009-11-20T17:26:19ZI would <b>NOT</b> use a table as Fiscal year isn't something that should be that dynamic.http://stackoverflow.com/questions/1444738/using-ninject-with-entity-frameworkComment by Brett Veenstra on Using Ninject With Entity FrameworkBrett Veenstra2009-11-03T19:21:58Z2009-11-03T19:21:58ZCan you update your question with more code (e.g. Ninject Mapping / SqlCateglogRepository class)http://stackoverflow.com/questions/1577472/fluent-nhibernate-rarely-used-properties-as-component-or-in-seperate-table/1648851#1648851Comment by Brett Veenstra on Fluent NHibernate: rarely used properties as Component, or in seperate table?Brett Veenstra2009-11-02T17:30:14Z2009-11-02T17:30:14ZAgree with Stefan, sounds like pre-mature optimization here.http://stackoverflow.com/questions/1315621/implementing-inotifypropertychanged-does-a-better-way-exist/1316640#1316640Comment by Brett Veenstra on Implementing INotifyPropertyChanged - does a better way exist?Brett Veenstra2009-11-02T17:28:08Z2009-11-02T17:28:08ZIn order to stay away from magic strings, you can also use the code from this blog post: <a href="http://blog.m.jedynak.pl/2009/02/static-typed-propety-names.html" rel="nofollow">blog.m.jedynak.pl/2009/02/…</a>http://stackoverflow.com/questions/1191730/data-input-for-many-to-many-relationship-in-windows-formsComment by Brett Veenstra on Data input for many to many relationship in windows formsBrett Veenstra2009-11-02T17:07:17Z2009-11-02T17:07:17ZDo you need help about databinding the Many-To-Many or adding tags with commas? I'm confused as to which question to try and answer.http://stackoverflow.com/questions/1650633/is-there-is-a-fluent-approach-to-handling-winform-eventComment by Brett Veenstra on Is there is a fluent approach to handling WinForm event?Brett Veenstra2009-11-02T15:38:03Z2009-11-02T15:38:03ZCool idea! I haven't seen anything like this, perhaps Jeremy Miller has done some work on StoryTeller (<a href="http://storyteller.tigris.org/source/browse/storyteller/trunk/" rel="nofollow">storyteller.tigris.org/source/browse/…</a>)?http://stackoverflow.com/questions/1448954/can-i-get-a-concrete-type-from-an-interface-instance-with-ninjectComment by Brett Veenstra on Can I get a concrete type from an interface instance with Ninject?Brett Veenstra2009-11-02T14:46:41Z2009-11-02T14:46:41ZIf your <code>Event</code> is nothing more than a data-object, I would not consider it "unclean" to inject it.http://stackoverflow.com/questions/1029602/using-ioc-with-internal-objectsComment by Brett Veenstra on Using IoC with internal objectsBrett Veenstra2009-11-02T14:38:07Z2009-11-02T14:38:07ZIf it's an open source SDK, I'm wondering why you're trying to prevent usage of your code? I understand if you're trying to make sure us SDK "users" don't instantiate objects incorrectly, but to me, that is even more of a smell (SRP, LSP). Can you explain more of your constraints?http://stackoverflow.com/questions/591362/implementing-onepersessionbehavior-in-ninjectComment by Brett Veenstra on Implementing OnePerSessionBehavior in NInject...Brett Veenstra2009-11-02T14:30:44Z2009-11-02T14:30:44ZI'm assuming you need something more than just DateTime.Now. Can you expound upon your requirements a little more please? :)http://stackoverflow.com/questions/1637485/how-to-use-net-3-x-features-in-net-2-0-visual-studio-2008Comment by Brett Veenstra on How to use .NET 3.x features in .NET 2.0 (Visual Studio 2008)Brett Veenstra2009-11-02T14:24:02Z2009-11-02T14:24:02ZMoayad: I need two more votes to close it. :(http://stackoverflow.com/questions/4442/rhinomocks-how-do-you-properly-mock-an-ienumerabletComment by Brett Veenstra on RhinoMocks: How do you properly mock an IEnumerable<T>?Brett Veenstra2009-10-31T05:24:54Z2009-10-31T05:24:54ZIn retrospect, this is a <b>TERRIBLE</b> question. Trying to get votes to Close