User Neil Barnwell - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:45:30Z http://stackoverflow.com/feeds/user/26414 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1803637/adding-editing-master-children-entities-in-a-single-windows-forms/1803652#1803652 0 Answer by Neil Barnwell for Adding/Editing master-children entities in a single Windows forms Neil Barnwell 2009-11-26T13:24:54Z 2009-11-26T13:24:54Z <p>Either with a datagrid, embedded repeater usercontrol, or with a dialog.</p> <p>You could have a list control, that when selected, displays the view/edit control in a different frame. <img src="http://www.freeimagehosting.net/uploads/th.3eed28a035.png" alt="alt text"></p> http://stackoverflow.com/questions/1781948/net-application-very-slow-to-start-cryptnet-dll-trying-to-access-ip-in-bermuda/1781997#1781997 0 Answer by Neil Barnwell for .NET application very slow to start - cryptnet.dll trying to access IP in Bermuda Neil Barnwell 2009-11-23T09:25:04Z 2009-11-23T09:34:51Z <p>This sounds like a virus. I Googled <code>cryptnet.dll</code>, and found that it's a system file. If your app isn't directly referencing it, then the chances are it's being accessed via several layers of abstraction (i.e. via the .NET framework) and is corrupt or has a virus. If it's accessing a server in Bermuda, it's almost certainly a virus.</p> <p>Could it be that your installer app is compromised and is the way-in for the virus? Try building a new installer for your console app and try that on a new, clean PC build.</p> <p>You could try replacing the <code>cryptnet.dll</code> file with a fresh one, as described by one answerer here: <a href="http://www.techimo.com/forum/technical-support/93583-what-hell-cryptnet-dll.html" rel="nofollow">http://www.techimo.com/forum/technical-support/93583-what-hell-cryptnet-dll.html</a></p> <blockquote> <p>if you are seeing that error...you need to replace the cryptnet.dll file. if you installed SP1 there should be one under the servicepackfiles\i386 folder</p> <p>fyi, cryptnet.dll is used for SSL which is a protocol used when accessing https: sites.</p> </blockquote> http://stackoverflow.com/questions/768492/enterprise-service-bus-terminology 2 Enterprise Service Bus Terminology Neil Barnwell 2009-04-20T14:24:19Z 2009-11-22T01:18:10Z <p>Can anyone explain at a beginner-intermediate level the terminology of "bus", "transport" and "endpoint" in the context of an <a href="http://en.wikipedia.org/wiki/Enterprise%5Fservice%5Fbus" rel="nofollow">enterprise service bus</a>? I'm a C# developer with a few years experience now, but only just starting working with an ESB.</p> <p>It seems that the "bus" is effectively a queue to which you can send and receive messages. I'm fine with that. However I'm working on some existing code using <a href="http://www.nservicebus.com/" rel="nofollow">NServiceBus</a> and I think if I grokked the "endpoint" and "transport" terminology I'd make a massive leap forward in my understanding.</p> http://stackoverflow.com/questions/828778/persistent-messaging-service-bus-roll-my-own-or-risk-the-learning-curve 1 Persistent Messaging/Service Bus - Roll my own or risk the learning curve? Neil Barnwell 2009-05-06T09:18:09Z 2009-11-22T01:17:55Z <p>We have a client application that needs to send messages to a server for various notifications. In order that the client can run occasionally connected I'm going to go with a message-queue approach. The queue processing will take messages off the queue and call a web service that will put them on another queue to finally be processed. This question is about the client environment; the server environment is already decided on.</p> <p>I don't want to use MSMQ because we don't have control over all the client PCs in order to install/configure and secure MSMQ properly, and because support is more challenging due to the quality of tooling for investigating the contents of MSMQ queues. SQL Server 2005 Express is on all the machines, and is used to store data for our application.</p> <p>I currently have it down to two options:</p> <ol> <li>Write a fairly basic persistent message-queue that stores the messages in a table after serialising them, then uses <code>ThreadPool.QueueUserWorkItem</code> to have them processed by handlers configured against each message type. All in a <code>System.Transactions.TransactionScope</code> so they are only removed from the persistent queue if they are successfully processed.</li> <li>Use NServiceBus (this is the service bus we've gone with as a team, so MassTransit etc aren't options) on the client, with a Service Broker transport that uses the local database.</li> </ol> <p>I have little experience with service buses (I still don't really get service bus terminology) so I'm concerned about the learning curve compared to writing something much more simple that meets my requirements in the way I need it to (deployment is a <strong>big</strong> consideration).</p> <p>Does anyone have any thoughts?</p> http://stackoverflow.com/questions/1759985/c-hiding-all-methods-of-the-usercontrol-class-from-a-derived-one/1759998#1759998 0 Answer by Neil Barnwell for C# - Hiding all methods of the UserControl class from a derived one Neil Barnwell 2009-11-18T23:59:59Z 2009-11-18T23:59:59Z <p>Don't inherit <code>UserControl</code>, inherit <code>Control</code> instead.</p> http://stackoverflow.com/questions/1755439/why-does-adding-two-shorts-return-an-int 5 Why does adding two shorts return an int? [closed] Neil Barnwell 2009-11-18T11:40:52Z 2009-11-18T23:45:35Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/941584/byte-byte-int-why">byte + byte = int&hellip; why?</a> </p> </blockquote> <p><strong>UPDATE:</strong><br> As people have pointed out, this question has been asked before: <a href="http://stackoverflow.com/questions/941584">http://stackoverflow.com/questions/941584</a>. Sorry for the dupe.</p> <p><strong>Original question</strong><br> I know this to be the case, and have always worked with it, but I came across it today and am interested to know why it is the case that the following doesn't compile:</p> <pre><code>short addend1 = 12; short addend2 = 34; short ret = addend1 + addend2; </code></pre> <p>This gives the following compile error:</p> <blockquote> <p>Cannot implicitly convert type 'int' to 'short'. An explicit conversion exists (are you missing a cast?)</p> </blockquote> <p>Instead, you have to cast the result from <code>int</code> back to <code>short</code>, thus:</p> <pre><code>short addend1 = 12; short addend2 = 34; short ret = (short)(addend1 + addend2); </code></pre> <p><strong>UPDATE (I'm an idiot):</strong><br> I thought about it some more, and wondered if the result is <code>int</code>, because the result could possibly be larger than a <code>short</code> could contain.</p> <p>In fact, I've just answered my own question, haven't I?</p> <p>Therefore, my question is about the technical reasons - i.e. how does the implementation of what is effectively <code>Int32.operator+</code> in the CLR make this happen?</p> <p><strong>UPDATE 2 (maybe I'm not so stupid?)</strong><br> Why did they bother, since as Jeff Foster pointed out in the question comments below, any two arithmetic operations could result in an overflow. Addition of two <code>int</code>s doesn't result in a <code>long</code>.</p> http://stackoverflow.com/questions/1756869/invoking-an-instance-method-without-invoking-constructor/1756872#1756872 7 Answer by Neil Barnwell for Invoking an instance method without invoking constructor Neil Barnwell 2009-11-18T15:41:28Z 2009-11-18T15:41:28Z <p>No. Because <code>C.M()</code> is an instance method, you need to create an instance, which means calling the constructor.</p> <p>Is <code>C</code> a class that your team owns? If it is, but you are under orders to leave it alone, you'd do well to lobby for either: </p> <ol> <li>Those side-effects to be refactored and removed</li> <li>The <code>C.M()</code> method functionality moved out to another class or made static.</li> </ol> <p>If <code>C</code> is from a 3rd-party, you're going to have trouble, and may have to replicate the functionality of <code>C.M()</code> in a method you <strong>do</strong> own.</p> http://stackoverflow.com/questions/1755597/c-do-i-need-to-dispose-a-backgroundworker-created-at-runtime/1755646#1755646 3 Answer by Neil Barnwell for C#: Do I need to dispose a BackgroundWorker created at runtime? Neil Barnwell 2009-11-18T12:30:00Z 2009-11-18T12:30:00Z <p>The challenge is making sure you only dispose the <code>BackgroundWorker</code> <strong>after</strong> it's finished running. You can't do that in the <code>Completed</code> event, because that event is raised by the BackgroundWorker itself.</p> <p>BackgroundWorker is really intended to be used as a component on a WinForms form, so I would recommend either doing that, or switching to something like <code>Thread.QueueUserWorkItem</code>. This will use a thread-pool thread, and won't require any special cleanup when it's finished.</p> http://stackoverflow.com/questions/1728145/why-would-a-query-be-faster-in-sql-server-2005-just-because-its-in-a-view 1 Why would a query be faster in SQL Server 2005 just because it's in a view? Neil Barnwell 2009-11-13T09:30:03Z 2009-11-18T09:40:31Z <p>We have a (large) <code>SELECT</code> query, that can take ~30 seconds to run. I am told that when placed in a view, it takes less than 5 seconds to run.</p> <p>My assumption is that SQL Server caches query plans for queries that don't change, so why the massive improvement in performance here?</p> <p>Just to be clear, this really is just a case of taking something like:</p> <pre><code>select * from table /* Lots of joins, where clauses */ </code></pre> <p>and making it a view:</p> <pre><code>create view myfirstview as select * from table /* Lots of joins, most of the where clauses */ select * from myfirstview where /* The rest of the where clauses (i.e. the ones that can change) */ </code></pre> http://stackoverflow.com/questions/1754638/measure-a-process-cpu-and-ram-usage/1754654#1754654 0 Answer by Neil Barnwell for Measure a process CPU and RAM usage Neil Barnwell 2009-11-18T09:12:48Z 2009-11-18T09:25:18Z <p>Use <a href="http://technet.microsoft.com/en-us/library/cc749249.aspx" rel="nofollow">Performance Monitor</a>, and <a href="http://technet.microsoft.com/en-us/library/cc749266.aspx" rel="nofollow">add counters for specific processes</a>.</p> <p>If you need to analyse the results, you can have them written to a <a href="http://technet.microsoft.com/en-us/library/cc721865.aspx" rel="nofollow">performance log</a>.</p> http://stackoverflow.com/questions/1754661/wrapping-controls-from-system-windows-forms-in-system-windows-uielement/1754689#1754689 0 Answer by Neil Barnwell for Wrapping Controls from System.Windows.Forms in System.Windows.UIElement Neil Barnwell 2009-11-18T09:20:02Z 2009-11-18T09:20:02Z <p>There is the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.integration.windowsformshost.aspx" rel="nofollow">WindowsFormsHost</a> class, though I would add a note of caution. If you're using all your old controls from winforms, mixed with WPF, it won't be a nice experience for the user. I assume you've been told you can't, or don't have time, but really you should look to replacing your existing controls with WPF controls. Unless you have lots of seriously complicated owner-drawn stuff, this shouldn't be too much effort.</p> <p>So my recommendation would be to start creating WPF versions of your existing controls (or buy a set from someone like Telerik for any non-domain-specific controls you've created, like toolbars etc), and only keep Winforms controls for extra-complicated bespoke controls you've created. Even then, you should be planning for a "phase 2" to replace those as well. Your users will thank you for it.</p> http://stackoverflow.com/questions/1749664/how-to-log-exceptions-in-windows-forms-application/1749696#1749696 1 Answer by Neil Barnwell for How to log exceptions in Windows Forms Application Neil Barnwell 2009-11-17T15:35:07Z 2009-11-17T15:35:07Z <p>You should only catch exceptions you can do something about, really.</p> <p>That's the rule of thumb. I typically have a try/catch around my <code>Program.Main</code> just in case an exception bubbles right to the top and needs logging. You can also handle the <code>CurrentDomain_UnhandledException</code> event, in case exceptions are thrown in other threads than the UI thread (assuming you are multithreading).</p> http://stackoverflow.com/questions/1741299/how-to-bind-datagridview-predefined-columns-with-columns-from-sql-statement-with/1741381#1741381 0 Answer by Neil Barnwell for How to bind dataGridView predefined columns with columns from sql statement (without adding new columns)? Neil Barnwell 2009-11-16T10:42:55Z 2009-11-16T10:49:41Z <p>I think the DataGridView has an <code>AutoGenerateColumns</code> property, doesn't it?</p> <pre><code>dataGridView1.AutoGenerateColumns = True; </code></pre> <p>From the MSDN docs:</p> <blockquote> <p>public bool AutoGenerateColumns { set; get; } Member of System.Windows.Forms.DataGridView</p> <p>Summary: Gets or sets a value indicating whether columns are created automatically when the System.Windows.Forms.DataGridView.DataSource or System.Windows.Forms.DataGridView.DataMember properties are set.</p> <p>Returns: true if the columns should be created automatically; otherwise, false. The default is true.</p> </blockquote> <p>The property isn't on the Properties window though, you have to set it via code as in my example.</p> http://stackoverflow.com/questions/1737155/window-is-not-maxinizing-being-brought-to-front-after-being-in-tray-why-help/1737162#1737162 2 Answer by Neil Barnwell for Window is not maxinizing/being brought to front after being in tray, why?/help Neil Barnwell 2009-11-15T10:15:46Z 2009-11-15T10:15:46Z <p>Are you hiding the form? In which case try <code>this.Show()</code> instead.</p> http://stackoverflow.com/questions/1729662/keeping-one-window-in-front-of-another/1729710#1729710 3 Answer by Neil Barnwell for Keeping one window in front of another Neil Barnwell 2009-11-13T14:55:35Z 2009-11-13T15:04:04Z <p>When you call <code>form.Show()</code>, pass in the user control's owner (the current form) as the owner parameter. This code isn't perfect, but you'll get the idea.</p> <pre><code>class MyControl : UserControl { private DropDownForm form = new DropDownForm(); public MyControl() { form.FormClosed += dropdownform_closed; } private void MethodThatShowsDropdown() { form.AddData(GetTheData()); form.Show(this.Owner); // Or is it "this.Parent"? I can never remember... } private void dropdownform_closed(object sender, EventArgs e) { DoSomething(form.SelectedValue); } } </code></pre> http://stackoverflow.com/questions/1729346/how-to-cancel-an-asynchronous-calls/1729367#1729367 11 Answer by Neil Barnwell for How to cancel an asynchronous calls? Neil Barnwell 2009-11-13T14:00:48Z 2009-11-13T14:07:21Z <p>A "cancel flag" is the way to do it, though not a global one, necessarily. The unavoidable point is that you need <strong>some</strong> way to signal to the thread that it should stop what it's doing.</p> <p>In the case of <code>BeginInvoke</code>, this is hard to do with anything but a global flag, because the work is carried out on the threadpool, and you don't know which thread. You have a couple of options (in order of preference):</p> <ol> <li>Use the <code>BackgroundWorker</code> instead of <code>BeginInvoke</code>. This has <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.cancelasync.aspx" rel="nofollow">cancellation functionality baked-in</a>. This has other benefits, like <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.progresschanged.aspx" rel="nofollow">progress monitoring</a>, and <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.runworkercompleted.aspx" rel="nofollow">"Work complete" callbacks</a>. It also nicely <a href="http://stackoverflow.com/questions/258662/unhandled-exceptions-in-backgroundworker">handles exceptions</a>.</li> <li>Use <code>ThreadPool.QueueUserWorkItem</code>, passing in an object as the state that has a <code>Cancel()</code> method that sets a <code>Cancelled</code> flag that the executing code can check. Of course you'll need to keep a reference to the state object so you can call <code>Cancel()</code> on it (which is something the <code>BackgroundWorker</code> does for you - you have a component on your form. (Thanks to <a href="http://stackoverflow.com/users/93623/fredrik-mork">Fredrik</a> for reminding about this).</li> <li>Create your own <code>ThreadStart</code> delegate, passing in a state object as with option 2.</li> </ol> http://stackoverflow.com/questions/1728948/how-to-setup-feedback-link-on-windows-forms-caption-using-c/1728973#1728973 2 Answer by Neil Barnwell for How to setup feedback link on Windows Forms caption using C# ? Neil Barnwell 2009-11-13T12:35:43Z 2009-11-13T12:48:52Z <p>On <strong>every</strong> form? You could create a "FeedbackLink" UserControl, and place that whereever you like. I wouldn't recommend trying to do it as a clever blanket-thing, because you can never assume the place you want the feedback hyperlink won't be used by something else.</p> <p>My suggestion would actually be to add it to the "Help" menu on your main form, and possibly in some kind of (very intrusive) pop-up dialog. Maybe do it the way Visual Studio tackles it - by putting an icon in the systray with a bubble that pops up for the user to click on?</p> <p>Example image (might take a second or two to appear):<br> <img src="http://www.freeimagehosting.net/uploads/b7939d58ae.png" alt="Example"></p> http://stackoverflow.com/questions/1728404/date-format-yyyy-mm-ddthhmmssz/1728432#1728432 0 Answer by Neil Barnwell for date format yyyy-MM-ddTHH:mm:ssZ Neil Barnwell 2009-11-13T10:37:24Z 2009-11-13T10:37:24Z <p>That's pretty much the way you do it. What's wrong with this approach?</p> http://stackoverflow.com/questions/1728367/how-to-prevent-auto-implemented-properties-from-being-serialized/1728390#1728390 2 Answer by Neil Barnwell for How to prevent auto implemented properties from being serialized? Neil Barnwell 2009-11-13T10:28:40Z 2009-11-13T10:28:40Z <p>I'm not sure you can. This <a href="http://msdn.microsoft.com/en-us/library/system.serializableattribute.aspx" rel="nofollow">MSDN article on <code>SerializableAttribute</code></a> suggests you implement ISerializable and control the serialisation yourself:</p> <blockquote> <p>All the public and private fields in a type that are marked by the SerializableAttribute are serialized by default, unless the type implements the ISerializable interface to override the serialization process.</p> </blockquote> <p>Or switch away from an auto-property for that specific field.</p> http://stackoverflow.com/questions/1727400/should-i-directly-check-if-file-exist-or-check-a-db-column/1728370#1728370 2 Answer by Neil Barnwell for Should I directly check 'if file exist' or check a db column? Neil Barnwell 2009-11-13T10:22:51Z 2009-11-13T10:22:51Z <p>It depends.</p> <p>If you want to check existence of the file, you have no choice but to check the filesystem. Yes, this might be slower than the db call. Db calls are still remote inter-process calls though, and as such can be expensive in their own right.</p> <p>The answer is to try both, profile, and optimise for the best answer for your specific scenario.</p> http://stackoverflow.com/questions/1728320/how-to-show-the-application-on-taskbar/1728338#1728338 0 Answer by Neil Barnwell for How to Show the application on taskbar? Neil Barnwell 2009-11-13T10:15:52Z 2009-11-13T10:15:52Z <p>The answer is to not do anything. You form should have a Systray component on it, that adds the item to the system tray, and you don't need to do anything with the minimise/showintaskbar behaviour.</p> <p>You may or may not wish to show/hide the systray icon on minimise/restore, but I wouldn't recommend that because it would be weird behaviour, unless you're also hiding from the taskbar.</p> http://stackoverflow.com/questions/1725656/modeling-workflow-in-c-application/1726184#1726184 0 Answer by Neil Barnwell for Modeling Workflow in C# Application Neil Barnwell 2009-11-12T23:38:45Z 2009-11-12T23:38:45Z <p>Resharper 5 comes out soon, and amongst many other useful features, has a feature called "Call tracking" that does <strong>exactly</strong> what you are describing.</p> <p><a href="http://www.jetbrains.com/resharper/documentation/whatsnew%5F50.html#code%5Fanalysis" rel="nofollow">http://www.jetbrains.com/resharper/documentation/whatsnew%5F50.html#code%5Fanalysis</a></p> http://stackoverflow.com/questions/1725803/unique-value-in-stacktrace/1726176#1726176 0 Answer by Neil Barnwell for Unique value in StackTrace? Neil Barnwell 2009-11-12T23:37:25Z 2009-11-12T23:37:25Z <p>If you used some form of Aspect Oriented Programming (like Postsharp) you might find a better, declarative way to get the information you need. <code>Thread.CurrentThread.ManagedThreadId</code> would give you a reference for the thread running the code at the time, but all your developers would have to do do is apply an attribute to a method, rather than calling <code>Begin()</code> and <code>End()</code> for every method.</p> http://stackoverflow.com/questions/1725991/how-to-insert-combobox-item-into-listbox-winforms/1726149#1726149 1 Answer by Neil Barnwell for How to insert ComboBox item into ListBox? [winforms] Neil Barnwell 2009-11-12T23:30:02Z 2009-11-12T23:30:02Z <p>The selected item of the combobox is a DataRowView, and the listbox is calling <code>DataRowView.ToString()</code> to work out what to display.</p> <p>You can either</p> <ol> <li>Cast the <code>object</code> return value of <code>ComboBox.SelectedItem</code> to <code>DataRowView</code>, and add the value of the column you want to display. (i.e. <code>listbox.Items.Add(((DataRowView)combobox.SelectedItem).FieldName);</code></li> <li>Set the "DisplayMember" and "ValueMember" values of the listbox, so the listbox doesn't just use <code>ToString()</code> any more. This is probably something you've already done for your comboxbox, otherwise it would also be displaying "System.Data.DataRowView".</li> </ol> http://stackoverflow.com/questions/1708714/advanced-system-transactions-debugging 0 Advanced System.Transactions debugging Neil Barnwell 2009-11-10T15:16:47Z 2009-11-12T19:35:53Z <p>Are there any tips, tricks or methods for obtaining profiling/logging/debug information on the runtime behaviour of <code>System.Transactions.TransactionScope</code>?</p> <p>I have an application which is committing data to the database, even though I'm using <code>System.Transactions.TransactionScope</code>, where an exception is thrown and <code>TransactionScope.Commit()</code> is never called.</p> <p>I was wondering if there are events or details on other classes used by <code>TransactionScope</code> that I can query at runtime to establish whether my commands (typed data adapters) are enlisting the ambient transaction or not.</p> <p>Having looked at <code>System.Transactions.dll</code> using Reflector, I think the <code>System.Transactions.Diagnostics</code> namespace might help, but any examples would be much appreciated.</p> http://stackoverflow.com/questions/1722590/using-c-timer-to-stop-executing-a-program/1722622#1722622 1 Answer by Neil Barnwell for Using C# Timer to stop executing a Program Neil Barnwell 2009-11-12T14:40:07Z 2009-11-12T14:53:20Z <p>I'm not sure this is desirable behaviour, so if you update your question you might get a better answer than this.</p> <p>You can use a timer that does little more than toggle a variable (e.g. bool). If that bool is used by the application, then you can use it to control whether the application is "running".</p> <p>I'm suggesting this instead of <code>Thread.Sleep()</code> because at least your application is still responsive. If you want to pause a non-UI thread, then <code>Thread.Sleep()</code> will suffice, but <strong>don't</strong> call <code>Thread.Sleep()</code> on the UI thread, even with very short durations.</p> http://stackoverflow.com/questions/1722631/can-one-class-inherit-from-an-other-class-an-have-implemented-an-interface-at-sam/1722643#1722643 6 Answer by Neil Barnwell for can one class inherit from an other class an have implemented an interface at same time ? Neil Barnwell 2009-11-12T14:42:11Z 2009-11-12T14:42:11Z <p>Yes, but you do it like this:</p> <pre><code>public partial class RegistrationForm : System.Web.UI.UserControl, IRegistrationForm </code></pre> <p>C# doesn't support multiple inheritance, so you put the class you inherit from first, followed by a comma, followed by a comma-delimited list of the interfaces it implements.</p> http://stackoverflow.com/questions/1721092/c-windows-service-problem-with-memory-memory-leak/1721098#1721098 2 Answer by Neil Barnwell for c# windows service problem with memory (memory leak?) Neil Barnwell 2009-11-12T09:47:03Z 2009-11-12T14:26:41Z <p>You're not disposing your <code>FileStream</code>. The garbage collector can call <code>Dispose()</code> for you, but it's non-deterministic (i.e. you don't know when/if it's going to happen). It's probably decided here not to bother. As a result, recommended best practice is to consider wrapping anything that implements <code>IDisposable</code> in <code>using</code> statements:</p> <pre><code>using (FileStream fs = new FileStream(@"c:\svclog.txt", FileMode.OpenOrCreate, FileAccess.Write) { using (using (StreamWriter m_streamWriter = new StreamWriter(fs))) { m_streamWriter.BaseStream.Seek(0, SeekOrigin.End); m_streamWriter.WriteLine("Service Started on " + DateTime.Now.ToLongDateString() + " at " + DateTime.Now.ToLongTimeString()); m_streamWriter.WriteLine(" *----------------*"); } } </code></pre> <p>For maintenance and <a href="http://en.wikipedia.org/wiki/Don%27t%5Frepeat%5Fyourself" rel="nofollow">DRY</a> reasons, you should also consider refactoring the file-writing code to a separate method:</p> <pre><code>private void Log(string message) { using (FileStream fs = new FileStream(@"c:\svclog.txt", FileMode.OpenOrCreate, FileAccess.Write) { using (using (StreamWriter m_streamWriter = new StreamWriter(fs))) { m_streamWriter.BaseStream.Seek(0, SeekOrigin.End); m_streamWriter.WriteLine(message + " " + DateTime.Now.ToLongDateString() + " at " + DateTime.Now.ToLongTimeString()); m_streamWriter.WriteLine(" *----------------*"); } } } protected override void OnStart(string[] args) { Log("Service Started"); tmrCallBack = new TimerCallback(goEXE); tmr = new Timer(tmrCallBack, null, 0, 1000 * 60 * 1 / 2); } protected override void OnStop() { Log("Service Stopped"); tmr.Dispose(); } private void goEXE(Object state) { Console.WriteLine(DateTime.Now.ToString()); Log("Service running"); } </code></pre> http://stackoverflow.com/questions/1715223/msmq-and-active-directory-integration/1715230#1715230 0 Answer by Neil Barnwell for MSMQ and Active Directory Integration Neil Barnwell 2009-11-11T13:40:54Z 2009-11-11T13:40:54Z <p>It sounds like the task scheduler you're using is running with a user account that doesn't have the permissions. That would explain why it works when you run it manually.</p> http://stackoverflow.com/questions/1712064/c-thread-creation-question/1712072#1712072 13 Answer by Neil Barnwell for C# Thread Creation Question Neil Barnwell 2009-11-10T23:47:46Z 2009-11-10T23:53:51Z <p><code>IsBackground</code> means that the thread is <strong>terminated</strong> when the application terminates. This is rarely desirable behaviour, because it means that thread can't stop and clean up properly.</p> <p>Instead, the app should signal the thread to terminate, wait until it has done so, and then close properly.</p> <p>That's my summary of this blurb from the <a href="http://msdn.microsoft.com/en-us/library/system.threading.thread.isbackground.aspx" rel="nofollow"><code>Thread.IsBackground</code> MSDN article</a>:</p> <blockquote> <p>A thread is either a background thread or a foreground thread. Background threads are identical to foreground threads, except that background threads do not prevent a process from terminating. Once all foreground threads belonging to a process have terminated, the common language runtime ends the process. Any remaining background threads are stopped and do not complete.</p> </blockquote> http://stackoverflow.com/questions/1802351/creating-a-hotmail-account-from-c Comment by Neil Barnwell on Creating a hotmail account from C# Neil Barnwell 2009-11-26T08:46:28Z 2009-11-26T08:46:28Z Y'know, if I were cynical, I'd wonder why you want to do that? http://stackoverflow.com/questions/1781948/net-application-very-slow-to-start-cryptnet-dll-trying-to-access-ip-in-bermuda/1781985#1781985 Comment by Neil Barnwell on .NET application very slow to start - cryptnet.dll trying to access IP in Bermuda Neil Barnwell 2009-11-23T09:26:37Z 2009-11-23T09:26:37Z Could it be that your installer app is compromised and is the way-in for the virus? Try building a new installer for your console app and try that on a new, clean PC build. http://stackoverflow.com/questions/1754661/wrapping-controls-from-system-windows-forms-in-system-windows-uielement/1754689#1754689 Comment by Neil Barnwell on Wrapping Controls from System.Windows.Forms in System.Windows.UIElement Neil Barnwell 2009-11-19T13:10:35Z 2009-11-19T13:10:35Z Well, really I'm referring to the look-and-feel. Unless an amount of care is paid, the look-and-feel of the winforms controls will be jarring against the wpf stuff. http://stackoverflow.com/questions/1759985/c-hiding-all-methods-of-the-usercontrol-class-from-a-derived-one/1759995#1759995 Comment by Neil Barnwell on C# - Hiding all methods of the UserControl class from a derived one Neil Barnwell 2009-11-19T00:00:20Z 2009-11-19T00:00:20Z He wouldn't get designer support out of the box, which is one reason. http://stackoverflow.com/questions/1756869/invoking-an-instance-method-without-invoking-constructor/1756943#1756943 Comment by Neil Barnwell on Invoking an instance method without invoking constructor Neil Barnwell 2009-11-18T16:09:31Z 2009-11-18T16:09:31Z Yes I know, but it's a fine line on whether something is possible, versus whether it should be done. If someone asked if it were possible to survive a fall from a 2nd-floor window, you could say yes, but you'd still recommend highly that they don't do it. You might consider a white-lie and tell them no. :) I had no idea this was possible, and said as much in my answer. To all intents and purposes, it <b>is</b> impossible. http://stackoverflow.com/questions/1756869/invoking-an-instance-method-without-invoking-constructor/1756943#1756943 Comment by Neil Barnwell on Invoking an instance method without invoking constructor Neil Barnwell 2009-11-18T15:55:11Z 2009-11-18T15:55:11Z Whoa, that is crossing the streams quite a bit, or else you'd get +1 just for being such an evil genius. :) http://stackoverflow.com/questions/1756869/invoking-an-instance-method-without-invoking-constructor/1756872#1756872 Comment by Neil Barnwell on Invoking an instance method without invoking constructor Neil Barnwell 2009-11-18T15:53:47Z 2009-11-18T15:53:47Z @johnnyg Well, not necessarily always. If your objects are loaded via IoC, then you won't be able to initialise them because the interface might not have an <code>Initialise()</code> method, and you can't guarantee it would be called even if it did. If classes do lazy-initialisation when methods etc are called, that helps, but really it's not all that bad to do some work in the ctor. The issue is if the things it does cause actual proper side-effects and therefore cause trouble elsewhere. http://stackoverflow.com/questions/1756869/invoking-an-instance-method-without-invoking-constructor Comment by Neil Barnwell on Invoking an instance method without invoking constructor Neil Barnwell 2009-11-18T15:50:15Z 2009-11-18T15:50:15Z @programminghero +1 for lolz. Give him the benefit of the doubt, though. It might be that it's a 3rd-party class that he <b>really</b> wants the functionality of <code>C.M()</code> for, and he has no control over it. :) http://stackoverflow.com/questions/1755597/c-do-i-need-to-dispose-a-backgroundworker-created-at-runtime/1755694#1755694 Comment by Neil Barnwell on C#: Do I need to dispose a BackgroundWorker created at runtime? Neil Barnwell 2009-11-18T13:39:45Z 2009-11-18T13:39:45Z @henk it is <b>for now</b>. MS make no guarantee than one day it won't be, which is <b>exactly</b> why they recommend always calling <code>Dispose()</code> on things that implement <code>IDisposable</code>. http://stackoverflow.com/questions/1755439/why-does-adding-two-shorts-return-an-int Comment by Neil Barnwell on Why does adding two shorts return an int? Neil Barnwell 2009-11-18T11:52:24Z 2009-11-18T11:52:24Z Oh dear, this really has been done already, hasn't it? Sorry for the dupe (I even had a quick look first, oh well). http://stackoverflow.com/questions/1755439/why-does-adding-two-shorts-return-an-int Comment by Neil Barnwell on Why does adding two shorts return an int? Neil Barnwell 2009-11-18T11:47:02Z 2009-11-18T11:47:02Z Yeah, I thought that just before you posted your comment and updated the question to be a bit more about the technical reasons of how it works. I am an idiot - not had my first coffee yet, today. :) http://stackoverflow.com/questions/1754638/measure-a-process-cpu-and-ram-usage/1754654#1754654 Comment by Neil Barnwell on Measure a process CPU and RAM usage Neil Barnwell 2009-11-18T09:24:47Z 2009-11-18T09:24:47Z You can save to a performance log from performance monitor: <a href="http://technet.microsoft.com/en-us/library/cc721865.aspx" rel="nofollow">technet.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/1741299/how-to-bind-datagridview-predefined-columns-with-columns-from-sql-statement-with/1741381#1741381 Comment by Neil Barnwell on How to bind dataGridView predefined columns with columns from sql statement (without adding new columns)? Neil Barnwell 2009-11-16T14:43:29Z 2009-11-16T14:43:29Z Are you setting AutoGenerateColumns <b>before</b> setting DataSource or DataMember, as per the docs? http://stackoverflow.com/questions/1741299/how-to-bind-datagridview-predefined-columns-with-columns-from-sql-statement-with Comment by Neil Barnwell on How to bind dataGridView predefined columns with columns from sql statement (without adding new columns)? Neil Barnwell 2009-11-16T13:33:28Z 2009-11-16T13:33:28Z Is this ASP.NET or WinForms? http://stackoverflow.com/questions/1741299/how-to-bind-datagridview-predefined-columns-with-columns-from-sql-statement-with/1741381#1741381 Comment by Neil Barnwell on How to bind dataGridView predefined columns with columns from sql statement (without adding new columns)? Neil Barnwell 2009-11-16T13:32:55Z 2009-11-16T13:32:55Z Is this ASP.NET or WinForms?