User Martin Brown - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T13:22:21Zhttp://stackoverflow.com/feeds/user/20553http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1888402/assemblies-vs-class-libraries-net/1888453#18884532Answer by Martin Brown for Assemblies vs Class Libraries (.NET)Martin Brown2009-12-11T14:35:31Z2009-12-11T14:41:44Z<p>This question does not make a lot of sense. Assemblies contain class libraries, it is not an either or kind of thing. Even if you only have aspx files, the first time someone accesses a page, ASP.Net compiles it into a class and then an assembly on the fly.</p>
http://stackoverflow.com/questions/1867209/implementing-idisposable-in-file-delete-method/1867381#18673810Answer by Martin Brown for Implementing IDisposable in File.Delete method? Martin Brown2009-12-08T14:38:18Z2009-12-08T14:38:18Z<p>As you have suggested you will need to dispose of the image before you can delete it something like this:</p>
<pre><code>Image i = this.pictureBox1.Image;
this.pictureBox1.Image = null;
i.Dispose();
File.Delete(filePath);
</code></pre>
http://stackoverflow.com/questions/1345018/state-pattern-how-the-states-of-an-object-should-transition-when-theyre-involve/1866793#18667930Answer by Martin Brown for State Pattern: How the states of an object should transition when they're involved in complex processes?Martin Brown2009-12-08T12:55:24Z2009-12-08T12:55:24Z<p>In order for the state pattern to work, the context object has to expose an interface that the state classes can use. At a bare minimum this will have to include a <code>changeState(State)</code> method. This I'm afraid is just one of the limitations of the pattern and is a possible reason why it is not always useful. The secret to using the state pattern is to keep the interface required by the states as small as possible and restricted to a tight scope.</p>
<p>(1) Having a <code>canChangeQuantity</code> method is probably better than having all states implement a <code>setQuantity</code>. If some states are doing something more complex than throwing an exception, this advice may not follow.</p>
<p>(2) The <code>setState</code> method is unavoidable. It should, however, be kept as tightly scoped as possible. In Java this would probably be Package scope, in .Net it would be Assembly (internal) scope.</p>
<p>(3) The point about validation raises the question of when you do validation. In some cases, it is sensible to allow the client to set properties to invalid values and only validate them when you do some processing. In this case each state having an 'isValid()' method that validates the whole context makes sense. In other cases you want a more immediate error in which case I would create an <code>isQuantityValid(qty)</code> and <code>isPriceValid(price)</code> that would be called by the set methods before changing the values, if they return false throw an exception. I've always called these two Early and Late Validation and it is not easy to say which you need without knowing more about what you are up to.</p>
http://stackoverflow.com/questions/1826664/primitive-types-enum-does-it-exist/1826729#18267291Answer by Martin Brown for primitive types enum - does it existMartin Brown2009-12-01T14:58:13Z2009-12-01T14:58:13Z<p>The nearest you are going to get is <a href="http://msdn.microsoft.com/en-gb/library/system.typecode.aspx" rel="nofollow">System.TypeCode</a>.</p>
http://stackoverflow.com/questions/1820106/when-can-a-design-pattern-make-your-software-worse/1820431#18204312Answer by Martin Brown for When can a design pattern make your software worse?Martin Brown2009-11-30T15:20:46Z2009-11-30T15:20:46Z<p>A Design Pattern is simply a way of Naming and Documenting a common code structure. As such, you should not conclude that all patterns are good ones. The people that do a good job of documenting design patterns (eg the GoF) always include a section in the pattern description describing when you should, and should not, use the pattern. As such half the point of most design pattern books is to answer the question "When can a design pattern make your software worse?"</p>
<p>Many inexperienced developers never bother to learn the appropriate uses section and end up applying patterns where they are inappropriate. I think this is the cause of a lot of the negativity surrounding design patterns.</p>
<p>In conclusion the answer to this question should really be:- Go and read the design pattern and it will tell you.</p>
http://stackoverflow.com/questions/806298/short-contract-pay-rates-for-programmers-in-the-uk/1716362#17163620Answer by Martin Brown for Short contract pay rates for programmers in the uk? Martin Brown2009-11-11T16:30:24Z2009-11-11T16:30:24Z<p>You should charge more for short-term contracts as you will end up spending more time on the bench. Clients generally get angry if you spend all your time on the phone to agents so it is hard to work and find jobs at the same time. Personally, I don't bother with anything less than two months.</p>
<p>If you are just starting out it is probably a good idea to use an umbrella company instead of a Ltd, just while you get the hang of it. While you will probably want your own Ltd, setting one up and shutting it down again can be a bit of a hassle and isn't worth it if you only want one short term. I use <a href="http://www.sjdaccountancy.com/" rel="nofollow">SJD Accountancy</a> they can sort you out for both umbrella and Ltd. They are a little pricey, but their service is good.</p>
http://stackoverflow.com/questions/362434/how-can-i-change-my-default-database-in-sql-server-without-using-ms-sql-server-ma0How can I change my default database in SQL Server without using MS SQL Server Management Studio?Martin Brown2008-12-12T10:38:32Z2009-11-10T11:44:31Z
<p>I dropped a database from SQL Server, however it turns out that my login was set to use the dropped database as its default. I can connect to SQL Server Management Studio by using the 'options' button in the connection dialog and selecting 'master' as the database to connect to. However when ever I try to do anything in object explorer it tries to connect using my default database and fails.</p>
<p>Does anyone know how to set my default database without being able to log in?</p>
http://stackoverflow.com/questions/556494/how-can-i-detect-condition-that-causes-exception-before-it-happens/557514#5575141Answer by Martin Brown for How can I detect condition that causes exception before it happens?Martin Brown2009-02-17T16:00:18Z2009-10-21T16:36:54Z<p>In short, it doesn't look like you can in any simple way.</p>
<p>My first thought was to run this SQL:</p>
<pre><code>SELECT CASE WHEN USER = 'MyAppRole' THEN 1 ELSE 0 END
</code></pre>
<p>This works if you use SQL Server Management Studio, but fails when you run it from C# code. The trouble is the error you are getting is not occuring when the call to sp_setapprole is made, it is actually occuring when connection pooling calls sp_reset_connection. Connection pooling calls this when you first use a connection and there is no way to get in before it.</p>
<p>So I guess you have four options:</p>
<ol>
<li>Turn connection pooling off by adding "Pooling=false;" to your connection string.</li>
<li>Use some other way to connect to SQL Server. There are lower level APIs than ADO.Net, but frankly it is probably not worth the trouble.</li>
<li>As casperOne says you could fix your code to close the connection correctly.</li>
<li>Catch the exception and reset the connection pool. I'm not sure what this will do to other open connections though. Example code below:</li>
</ol>
<pre><code>class Program
{
static void Main(string[] args)
{
SqlConnection conn = new SqlConnection("Server=(local);Database=Test;UID=Scrap;PWD=password;");
setAppRole(conn);
conn.Close();
setAppRole(conn);
conn.Close();
}
static void setAppRole(SqlConnection conn)
{
for (int i = 0; i < 2; i++)
{
conn.Open();
try
{
using (IDbCommand cmd = conn.CreateCommand())
{
cmd.CommandType = CommandType.Text;
cmd.CommandText = "exec sp_setapprole ";
cmd.CommandText += string.Format("@rolename='{0}'", "MyAppRole");
cmd.CommandText += string.Format(",@password='{0}'", "password1");
cmd.ExecuteNonQuery();
}
}
catch (SqlException ex)
{
if (i == 0 && ex.Number == 0)
{
conn.Close();
SqlConnection.ClearPool(conn);
continue;
}
else
{
throw;
}
}
return;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1589503/hosting-a-long-running-process-in-iis/1589530#15895300Answer by Martin Brown for Hosting a long running process in IISMartin Brown2009-10-19T15:53:50Z2009-10-19T15:53:50Z<p>IIS is designed to handle HTTP connections and these are normally short lived. In order to do this kind of thing you have to make the client poll the server on a regular basis.</p>
http://stackoverflow.com/questions/1588900/multithreading-in-net-implementing-a-counter-in-the-background/1589187#15891873Answer by Martin Brown for Multithreading in .NET - implementing a counter in the backgroundMartin Brown2009-10-19T14:59:35Z2009-10-19T15:16:41Z<p>Every form in a windows application has a message loop that looks something like this:</p>
<pre><code>while (NotTimeToCloseForm)
{
Message msg = GetMessageFromWindows();
WndProc(msg);
}
</code></pre>
<p>This applies to all windows applications not just .Net ones. WPF provides a default implementation of WinProc that goes something like this:</p>
<pre><code>void WndProc(Message msg)
{
switch (msg.Type)
{
case WM_LBUTTONDOWN:
RaiseButtonClickEvent(new ButtonClickEventArgs(msg));
break;
case WM_PAINT:
UpdateTheFormsDisplay(new PaintEventArgs(msg));
break;
case WM_xxx
//...
break;
default:
MakeWindowsDealWithMessage(msg);
}
}
</code></pre>
<p>As you can see this means that a window can only process one message/event at a time. As you are sleeping in your Button Click event the message loop is being held up and the application stops responding (getting and processing messages).</p>
<p>If you use a <a href="http://msdn.microsoft.com/en-us/library/system.windows.threading.dispatchertimer.aspx" rel="nofollow">DispatcherTimer</a> it asks windows to periodically stick a WM_TIMER (Tick) message in the windows message queue. This allows your application to process other messages while still being able to do something at regular intervals without using another thread.</p>
<p>For more detail see MSDN "<a href="http://msdn.microsoft.com/en-gb/library/ms644927%28VS.85%29.aspx" rel="nofollow">About Messages and Message Queues</a>"</p>
http://stackoverflow.com/questions/1471985/is-it-possible-to-simulate-html-tag-label-in-asplabel-asp-net-control/1472004#14720040Answer by Martin Brown for Is it possible to simulate HTML tag <Label /> in asp:Label ASP.NET Control?Martin Brown2009-09-24T14:18:44Z2009-09-24T14:23:11Z<p>If you set the AssociatedControlID property of the <asp:Label> control it will write out an HTML <label> instead of a <span></p>
http://stackoverflow.com/questions/1361714/how-do-you-wait-for-a-network-stream-to-have-data-to-read1How do you wait for a Network Stream to have data to read?Martin Brown2009-09-01T10:29:46Z2009-09-01T19:02:27Z
<p>I have a worker thread in my application that is responsible for three different things. Requests for two of the jobs turn up in Queues that I have written, the other job is activated when a request turns up on a Network stream. I would like my worker thread to wait when there is no work to be done. This is easy with the two Queues as they expose a ManualResetEvent that is set when they have items, however the NetworkStream does not seem to have this. The NetworkStream has been retrieved from a TcpClient.</p>
<p>What I am after is code that looks something like this:</p>
<pre><code>while (notDone)
{
WaitHandle.WaitAny(new WaitHandle[] { queue1.HasData, queue2.HasData, netStream.HasData } );
// ...
if (netStream.DataAvailable)
{
netStream.Read(buffer, 0, 20);
// process buffer
}
}
</code></pre>
<p>Does anyone know a way to get a WaitHandle that is set when a NetworkStream has data?</p>
http://stackoverflow.com/questions/379560/how-do-i-write-ints-out-to-a-text-file-with-the-low-bits-on-the-right-side-bigen/1328257#13282570Answer by Martin Brown for How do I write ints out to a text file with the low bits on the right side (Bigendian)Martin Brown2009-08-25T13:24:33Z2009-08-25T13:24:33Z<p>It won't help now, but I created a <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=484149" rel="nofollow">connect ticket</a> for BinaryReder/Writer to support Bigendian out the box. Go vote for it <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=484149" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/123918/how-can-one-simplify-network-byte-order-conversion-from-a-binaryreader/1328234#13282340Answer by Martin Brown for How can one simplify network byte-order conversion from a BinaryReader?Martin Brown2009-08-25T13:20:49Z2009-08-25T13:20:49Z<p>It won't help now, but I created a <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=484149" rel="nofollow">connect ticket</a> for BinaryReder/Writer to support Bigendian out the box. Go vote for it <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=484149" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1307206/c-serialport-emulate-pos-keyboard/1307410#13074100Answer by Martin Brown for C# SerialPort - emulate pos keyboardMartin Brown2009-08-20T16:35:09Z2009-08-20T16:35:09Z<p>I've not done serial port development for years, but when I did I always used a <a href="http://en.wikipedia.org/wiki/Crossover%5Fcable" rel="nofollow">Crossover Cable</a> and a second PC running Windows HyperTerminal.</p>
http://stackoverflow.com/questions/1272799/transfer-text-to-clipboard-that-is-underlined/1273045#12730451Answer by Martin Brown for transfer text to clipboard that is underlinedMartin Brown2009-08-13T16:20:00Z2009-08-13T16:35:05Z<p>You may want to consider RTF as an alternative to HTML as it is older it often has better support and is more likely to end up with a proper text document rather than MS Words horrible interpretation of HTML. Also you will find RTF supports page breaks where as HTML doesn't. But be warned the mark-up in RTF is a little weird. For example:</p>
<pre><code>Clipboard.SetText(@"{\rtf1\ansi\ansicpg1252\deff0\deflang2057{\fonttbl{\f0\fswiss\fcharset0 Arial;}}\viewkind4\uc1\pard\f0\fs20 text \ul text\ulnone text\par}", TextDataFormat.Rtf);
</code></pre>
<p>The <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=DD422B8D-FF06-4207-B476-6B5396A18A2B&displaylang=en" rel="nofollow">specification for RTF</a> can be found obtainied from Microsoft <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=DD422B8D-FF06-4207-B476-6B5396A18A2B&displaylang=en" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1259494/net-multithreading-do-i-need-to-synchronise-access-to-a-variable-of-primitive/1259841#12598410Answer by Martin Brown for .NET Multithreading - Do I need to synchronise access to a variable of primitive type?Martin Brown2009-08-11T11:38:55Z2009-08-11T11:45:44Z<p>There is an <a href="http://msdn.microsoft.com/" rel="nofollow">MSDN</a> example that describes exactly what you are tying to do: <a href="http://msdn.microsoft.com/en-us/library/7a2f3ay4.aspx" rel="nofollow">How to: Create and Terminate Threads (C# Programming Guide)</a>. It suggests that you need to declare your Enabled property as <a href="http://msdn.microsoft.com/en-us/library/x13ttww7%28VS.71%29.aspx" rel="nofollow">volatile</a> and don't need to <a href="http://msdn.microsoft.com/en-us/library/c5kehkcz%28VS.80%29.aspx" rel="nofollow">lock</a> it.</p>
http://stackoverflow.com/questions/1211954/find-the-row-associated-with-a-min-max-without-inner-loop/1212066#12120660Answer by Martin Brown for Find the row associated with a Min/Max, without inner loopMartin Brown2009-07-31T11:37:58Z2009-07-31T15:10:36Z<p>Is IX_Orders sorted by ProductId, then CutomerId, then Date or is it ProductId, then Date, then CustomerId? If it is the former change it to the latter.</p>
<p>In other words don't use this:</p>
<pre><code>create index IX_Orders on Orders (ProductId, CustomerId, Date)
</code></pre>
<p>Use this instead:</p>
<pre><code>create index IX_Orders on Orders (ProductId, Date, CustomerId)
</code></pre>
<p>Then if you do:</p>
<pre><code>SELECT o1.*
FROM [Order] o1
JOIN
(
SELECT ProductID, Min(Date) as Date
FROM [Order]
GROUP BY ProductID
) o2
ON o1.ProductID = o2.ProductID AND o1.Date = o2.Date
ORDER BY ProductID
</code></pre>
<p>You end up with just one index scan on IX_Orders however if two customers can order the same product at the same time you could get multiple rows for each product. You can get past this by using the following quiery, but it is less efficient than the first:</p>
<pre><code>WITH cte AS
(
SELECT ProductID, CustomerID, Date,
ROW_NUMBER() OVER(PARTITION BY ProductID ORDER BY Date ASC) AS row
FROM [Order]
)
SELECT ProductID, CustomerId, Date
FROM cte
WHERE row = 1
ORDER BY ProductID
</code></pre>
http://stackoverflow.com/questions/545760/which-config-element-affects-exception-handling-with-unhandledexceptionmode-set2Which .config element affects exception handling with UnhandledExceptionMode set to UnhandledExceptionMode.Automatic?Martin Brown2009-02-13T12:38:08Z2009-07-30T09:34:26Z
<p>I have a Windows Forms application that has this code in the program's start up:</p>
<pre><code>Application.SetUnhandledExceptionMode(UnhandledExceptionMode.Automatic);
</code></pre>
<p>In the MSDN Documentation for <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.unhandledexceptionmode(VS.85).aspx" rel="nofollow">UnhandledExceptionMode.Automatic</a> it states that:</p>
<blockquote>
<p><strong>Automatic</strong> - Route all exceptions to
the ThreadException handler, unless
the application's configuration file
specifies otherwise.</p>
</blockquote>
<p>Does anyone know exactly which element/attribute in the config file it is that affects this setting?</p>
http://stackoverflow.com/questions/182600/should-one-use-or-in-a-for-loop/182754#18275422Answer by Martin Brown for Should one use < or <= in a for loopMartin Brown2008-10-08T13:30:32Z2009-07-29T16:44:44Z<p>I remember from my days when we did 8086 Assembly at college it was more performant to do:</p>
<pre><code>for (int i = 6; i > -1; i--)
</code></pre>
<p>as there was a <a href="http://www.emu8086.com/assembly%5Flanguage%5Ftutorial%5Fassembler%5Freference/8086%5Finstruction%5Fset.html#JNS" rel="nofollow">JNS</a> operation that means jump if minus. Using this meant that there was no memory lookup after each cycle to get the comparison value and no compare either. These days most compilers optimize register usage so the memory thing is no longer important, but you still get an un-required compare.</p>
<p>By the way putting 7 or 6 in your loop is introducing a "<a href="http://en.wikipedia.org/wiki/Magic%5Fnumber%5F%28programming%29" rel="nofollow">magic number</a>". For better readability you should use a constant with an Intent Revealing Name. Like this:</p>
<pre><code>const int NUMBER_OF_CARS = 7;
for (int i = 0; i < NUMBER_OF_CARS; i++)
</code></pre>
<p>EDIT: People aren’t getting the assembly thing so a fuller example is obviously required:</p>
<p>If we do for (i = 0; i <= 10; i++) you need to do this:</p>
<pre><code> mov esi, 0
loopStartLabel:
; Do some stuff
inc esi
; Note cmp command on next line
cmp esi, 10
jle exitLoopLabel
jmp loopStartLabel
exitLoopLabel:
</code></pre>
<p>If we do for (int i = 10; i > -1; i--) then you can get away with this:</p>
<pre><code> mov esi, 10
loopStartLabel:
; Do some stuff
dec esi
; Note no cmp command on next line
jns exitLoopLabel
jmp loopStartLabel
exitLoopLabel:
</code></pre>
<p>I just checked and Microsoft's C++ compiler does not do this optimization, but it does if you do:</p>
<pre><code>for (int i = 10; i >= 0; i--)
</code></pre>
<p>So the moral is if you are using Microsoft C++†, and ascending or descending makes no difference, to get a quick loop you should use:</p>
<pre><code>for (int i = 10; i >= 0; i--)
</code></pre>
<p>rather than either of these:</p>
<pre><code>for (int i = 10; i > -1; i--)
for (int i = 0; i <= 10; i++)
</code></pre>
<p>But frankly getting the readability of "for (int i = 0; i <= 10; i++)" is normally far more important than missing one processor command.</p>
<p>† Other compilers may do different things.</p>
http://stackoverflow.com/questions/1195030/why-is-this-name-not-cls-compliant/1195448#11954483Answer by Martin Brown for Why is this name not CLS Compliant?Martin Brown2009-07-28T17:07:40Z2009-07-29T09:45:02Z<p><a href="http://msdn.microsoft.com/en-us/library/bhc3fa7f.aspx" rel="nofollow">CLS Compliance</a> is to do with interoperability between the different .Net languages. The property is not CLS compliant because it starts with an underscore and is public (Note: protected properties in a public class can be accessed from outside the assembly). Although this will work if the property is accessed from C# it may not if it is accessed from other .Net languages that don't allow underscores at the start of property names, hence it is not CLS-Compliant.</p>
<p>You are getting this compiler error because somewhere in your code you have labelled your assembly as CLS compliant with a line something like this:</p>
<pre><code>[assembly: CLSCompliant(true)]
</code></pre>
<p>Visual Studio includes this line in the AssemblyInfo.cs file which can be found under Properties in most projects.</p>
<p>To get around this error you can either:</p>
<p>A. Rename your property (recommended).</p>
<pre><code> protected bool isNew;
</code></pre>
<p>B. Set your whole assembly to be non CLS compliant.</p>
<pre><code> [assembly: CLSCompliant(false)]
</code></pre>
<p>C. Add an attribute just to your property.</p>
<pre><code> [CLSCompliant(false)]
protected bool _isNew;
</code></pre>
<p>D. Change the scope of the property so that it can not be seen outside the assembly.</p>
<pre><code> private bool _isNew;
</code></pre>
http://stackoverflow.com/questions/1195193/regex-for-social-security-numbers/1195293#11952930Answer by Martin Brown for Regex for social security numbersMartin Brown2009-07-28T16:41:07Z2009-07-28T16:41:07Z<p>Assuming you are using VB.Net you could try something like this:</p>
<pre><code>If Regex.IsMatch(s, @"Social Security Number: \d{9,9}") then
//Process the number
End if
</code></pre>
<p>Or to actually extract the number:</p>
<pre><code> Match m = Regex.Match(s, @"Social Security Number: (?<number>\d{9,9})");
if (m.Success)
{
string number = m.Groups["number"].Value;
// Process number
}
</code></pre>
http://stackoverflow.com/questions/891449/xmlserializer-and-collection-property-with-private-setter/892596#8925965Answer by Martin Brown for XmlSerializer and Collection property with private setterMartin Brown2009-05-21T12:00:50Z2009-07-26T15:52:34Z<p>Your private setter is causing the issue. The XmlSearializer class will work fine with the class I have given below. The XmlSearializer class was invented before private setters were introduced, so it is probably not checking that correctly when it scans the class type using reflection. Maybe you should report this to Microsoft as a bug.</p>
<pre><code>public class MyClass
{
private List<int> _myCollection;
public MyClass()
{
_myCollection = new List<int>();
}
public List<int> MyCollection
{
get
{
return this._myCollection;
}
}
}
</code></pre>
http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/1177153#11771532Answer by Martin Brown for Dealbreakers for new programming jobs?Martin Brown2009-07-24T11:44:56Z2009-07-24T11:44:56Z<p>The company has a bad credit score. After having had a couple of contracts go south on me due to the firm going bankrupt I always do a credit check before attending interviews.</p>
http://stackoverflow.com/questions/1176276/how-do-i-improve-the-performance-of-code-using-datetime-tostring/1176807#11768070Answer by Martin Brown for How do I improve the performance of code using DateTime.ToString?Martin Brown2009-07-24T10:17:13Z2009-07-24T10:17:13Z<p>Do you know how big each record in the binary and text logs are going to be? If so you can split the processing of the log file across a number of threads which would give better use of a multi core/processor PC. If you don't mind the result being in separate files it would be a good idea to have one hard disk per core that way you will reduce the amount the disk heads have to move.</p>
http://stackoverflow.com/questions/1165040/what-security-issues-should-i-look-out-for-in-php9What security issues should I look out for in PHPMartin Brown2009-07-22T12:51:08Z2009-07-23T01:06:58Z
<p>I just starting out learning PHP, I've been developing web apps in ASP.Net for a long while. I was wondering if there are any <strong>PHP specific</strong> security mistakes that I should be looking out for.</p>
<p>So, my question is what are the top security tips that every PHP developer should know.</p>
<p>Please keep it to one tip per answer so people can vote up down effectively.</p>
http://stackoverflow.com/questions/1160132/refactor-help-strategy-pattern/1160367#11603670Answer by Martin Brown for refactor help - strategy patternMartin Brown2009-07-21T16:46:46Z2009-07-21T16:49:42Z<p>I think what you are looking for is the <a href="http://en.wikipedia.org/wiki/State%5Fpattern" rel="nofollow">State</a> patten. This is similar to the strategy pattern except that each state object is normally given a reference to the context object (in your case this is the form) when it is created. This allows the different states to do things to the context object in response to events. </p>
<p>When implementing a state pattern is is often preferable to make each seperate state inherit from an abstract base class. The base class can then implement the default operations in virtual methods and then you only have to override the operations that differ for each state.</p>
<pre><code>public interface IFormState
{
void EnableDisableControls();
}
public class DefaultState : IFormState
{
private MyForm context;
public DefaultState(MyForm context)
{
this.context = context;
}
protected MyForm Context
{
get
{
return this.context;
}
}
public virtual void EnableDisableControls()
{
this.context.btnRecordCall.Enabled = true;
this.context.btnAddMailOrStatusAction.Enabled = true;
this.context.btnPayments.Enabled = true;
this.context.btnAddressMaint.Enabled = true;
this.context.btnFilter.Enabled = true;
this.context.btnAddCoverage.Enabled = true;
this.context.btnPolicyForms.Enabled = true;
this.context.lblIsArchived.Text = "";
}
}
public class StateA : DefaultState
{
public StateA(MyForm context)
: base(context)
{
}
public override void EnableDisableControls()
{
base.EnableDisableControls();
this.Context.lblIsArchived.Text = "********** THIS CLAIM HAS BEEN ARCHIVED **********";
// etc...
}
}
</code></pre>
http://stackoverflow.com/questions/1124753/for-vs-foreach-loop-in-c/1126248#11262482Answer by Martin Brown for For vs Foreach loop in C#Martin Brown2009-07-14T15:38:27Z2009-07-14T15:38:27Z<p>A for loop gets compiled to code approximately equivalent to this:</p>
<pre><code> int tempCount = 0;
while (tempCount < list.Count)
{
if (list[tempCount].value == value)
{
// Do something
}
tempCount++;
}
</code></pre>
<p>Where as a foreach loop gets compiled to code approximately equivalent to this:</p>
<pre><code> using (IEnumerator<T> e = list.GetEnumerator())
{
while (e.MoveNext())
{
T o = (MyClass)e.Current;
if (row.value == value)
{
// Do something
}
}
}
</code></pre>
<p>So as you can see it would all depend upon how the enumerator is implemented verses how the lists indexer is implemented. As it turns out the enumerator for types based on arrays are normally written something like this:</p>
<pre><code> private static IEnumerable<T> MyEnum(List<T> list)
{
for (int i = 0; i < list.Count; i++)
{
yield return list[i];
}
}
</code></pre>
<p>So as you can see, in this instance it won't make very much difference, however the enumerator for a linked list would probably look something like this:</p>
<pre><code> private static IEnumerable<T> MyEnum(LinkedList<T> list)
{
LinkedListNode<T> current = list.First;
do
{
yield return current.Value;
current = current.Next;
}
while (current != null);
}
</code></pre>
<p>In .Net you will find that the LinkedList class does not even have an indexer so you wouldn't be able to do your for loop on a linked list, but if you could the indexer would have to be written like so:</p>
<pre><code> public T this[int index]
{
LinkedListNode<T> current = this.First;
for (int i = 1; i <= index; i++)
{
current = current.Next;
}
return current.value;
}
</code></pre>
<p>As you can see calling this multiple times in a loop is going to be much slower than using an enumerator that can remember where it is in the list.</p>
http://stackoverflow.com/questions/1097557/how-do-you-stop-datagridview-calling-idataerrorinfo-thisstring-columnname-get1How do you stop DataGridView calling IDataErrorInfo.this[string columnName] get?Martin Brown2009-07-08T11:45:46Z2009-07-08T11:54:18Z
<p>I have a data object that implements IDataErrorInfo however the validation logic is a bit slow. Not that slow, but slow enough you don't want to call it a large number of times. In my application a list of these objects gets displayed in a DataGridView control. The grid is read-only and will only ever contain valid data objects, however the DataGridView is insisting on calling IDataErrorInfo.this[string columnName] for every cell in the grid which is making repainting very slow.</p>
<p>I have tried setting ShowCellErrors and ShowRowErrors to false, but it is still calling IDataErrorInfo.this[string columnName]. Any ideas how I stop it validating objects that I know are valid?</p>
http://stackoverflow.com/questions/1094800/dos-batch-command-to-process-1-file-at-a-time/1094975#10949751Answer by Martin Brown for DOS Batch command to process 1 file at a timeMartin Brown2009-07-07T21:26:18Z2009-07-07T21:50:15Z<p>You can use a for command something like this:</p>
<pre><code>for /R c:\test\src %i IN (*.*) DO (
MOVE %i C:\test\dest
YourBatch.bat C:\test\dest\%~nxi
)
</code></pre>
<p>If you are putting this command in a batch file you will need to double up the % symbols like this:</p>
<pre><code>for /R c:\test\src %%i IN (*.*) DO (
MOVE %%i C:\test\dest
YourBatch.bat C:\test\dest\%%~nxi
)
</code></pre>
<p>In the YourBatch.bat file access the file name using %1% something like this:</p>
<pre><code>@echo off
type %1%
</code></pre>
<h2>EDIT:</h2>
<p>To only process one file simply exit at the end of the first loop:</p>
<pre><code>for /R c:\test\src %%i IN (*.*) DO (
MOVE %%i C:\test\dest
YourBatch.bat C:\test\dest\%%~nxi
exit
)
</code></pre>
http://stackoverflow.com/questions/1840522/how-can-a-programmer-get-out-of-the-learning-void/1867781#1867781Comment by Martin Brown on How can a programmer get out of the learning "void"?Martin Brown2009-12-08T16:48:27Z2009-12-08T16:48:27Z+1. In my experience writing the program is the easy bit. Knowing what the client needs the program to do is so much harder.http://stackoverflow.com/questions/1345018/state-pattern-how-the-states-of-an-object-should-transition-when-theyre-involve/1345061#1345061Comment by Martin Brown on State Pattern: How the states of an object should transition when they're involved in complex processes?Martin Brown2009-12-08T12:31:29Z2009-12-08T12:31:29Z@djna: As you describe it, you seem to be missing out the context object. The point of the state pattern is it allows you to transition a live object (the context) from one state to another without copying all the data to a new object. To do this you put the data in the context class and then have that delegate the operations to a state class. This allows you to change the state after object creation. Without the context class, you just have a plain old inheritance hierarchy rather than the state pattern.http://stackoverflow.com/questions/1791288/secured-client-side-scriptComment by Martin Brown on Secured Client-Side scriptMartin Brown2009-11-24T16:45:31Z2009-11-24T16:45:31Z"secured client-side" isn't that an oxymoron?http://stackoverflow.com/questions/1715439/best-logging-library-for-net/1715531#1715531Comment by Martin Brown on Best logging library for .NET?Martin Brown2009-11-11T15:35:20Z2009-11-11T15:35:20ZIt is fairly easy to set up TraceSwitch classes that allow different levels of logging in different parts of the application.http://stackoverflow.com/questions/1706996/old-unknown-databaseComment by Martin Brown on Old unknown databaseMartin Brown2009-11-10T11:13:50Z2009-11-10T11:13:50ZDoes the application in question come with any dll files? If so what are they called?http://stackoverflow.com/questions/1706996/old-unknown-database/1707036#1707036Comment by Martin Brown on Old unknown databaseMartin Brown2009-11-10T10:52:11Z2009-11-10T10:52:11ZThere is also reference to BRG in the DB2 help. <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/index.jsp?topic=/com.ibm.db2.luw.messages.sql.doc/doc/msql02521w.html" rel="nofollow">publib.boulder.ibm.com/infocenter/db2luw/…</a>http://stackoverflow.com/questions/1689000/provide-strongly-typed-access-to-the-session-object/1689033#1689033Comment by Martin Brown on Provide strongly typed access to the session objectMartin Brown2009-11-06T17:21:59Z2009-11-06T17:21:59ZWrapping the session object in a class does at least give you some idea what might be stored in it without scanning the code for every page in your site.http://stackoverflow.com/questions/272633/add-spaces-before-capital-letters/677522#677522Comment by Martin Brown on Add spaces before Capital LettersMartin Brown2009-10-22T16:52:29Z2009-10-22T16:52:29ZMaybe something like this would work:
char.IsUpper(text[i]) && (char.IsLower(text[i - 1]) || (char.IsLower(text[i+1]))http://stackoverflow.com/questions/6047/what-to-do-with-a-video-wall/6272#6272Comment by Martin Brown on What to do with a video wallMartin Brown2009-10-19T15:44:54Z2009-10-19T15:44:54ZWow!
(Some padding to keep stack overflow validation happy)http://stackoverflow.com/questions/1587333/c-calculate-download-upload-time-using-network-bandwidth/1587357#1587357Comment by Martin Brown on C# -calculate download/upload time using network bandwidthMartin Brown2009-10-19T11:04:02Z2009-10-19T11:04:02ZThis, I believe, is the technique use by Window's file copy dialog.http://stackoverflow.com/questions/1508668/why-is-there-no-string-isnumeric-function-in-c/1508691#1508691Comment by Martin Brown on Why is there no String.IsNumeric Function in C#Martin Brown2009-10-02T10:21:19Z2009-10-02T10:21:19ZThis hasn't stopped MS putting these methods on the Char data type.http://stackoverflow.com/questions/1461062/selecting-multiple-files-for-upload-in-web-pageComment by Martin Brown on Selecting Multiple Files for Upload in Web PageMartin Brown2009-09-22T16:25:44Z2009-09-22T16:25:44ZYou probably don't want to upload lots of files in one http request as it tends to become unreliable. After a while, you find you end up hitting various firewall request size limits, timeouts and general network issues. Most of the add-in up loaders will upload each file on a different request, which makes things more reliable and provides better error handling.http://stackoverflow.com/questions/1411727/speeding-up-sending-large-batch-of-emails-in-c-netComment by Martin Brown on speeding up sending large batch of emails in c# .netMartin Brown2009-09-11T16:38:54Z2009-09-11T16:38:54ZHow many Kilo-bytes is each email?
http://stackoverflow.com/questions/263273/what-is-the-most-poorly-named-application-out-there/264211#264211Comment by Martin Brown on What is the most poorly named application out there?Martin Brown2009-09-07T16:46:29Z2009-09-07T16:46:29ZMore of a bad product than a bad name.http://stackoverflow.com/questions/1361714/how-do-you-wait-for-a-network-stream-to-have-data-to-read/1364096#1364096Comment by Martin Brown on How do you wait for a Network Stream to have data to read?Martin Brown2009-09-03T15:22:04Z2009-09-03T15:22:04ZIf you can't make BeginRead read zero bytes you start having to manage the read buffer between the main loop and the call back. This is totally doable but is not as nice as I would like.