User Bob Nadler - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T12:08:36Z http://stackoverflow.com/feeds/user/2514 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1784303/c-usercontrol-constructor-with-parameters/1784356#1784356 1 Answer by Bob Nadler for C# UserControl constructor with parameters Bob Nadler 2009-11-23T16:39:11Z 2009-11-23T16:48:38Z <p>Just do this:</p> <pre><code>public partial class MyUserControl : UserControl { public MyUserControl() : this(-1, string.Empty) { } public MyUserControl(int parm1, string parm2) { // We'll do something with the parms, I promise if (parm1 == -1) { ... } InitializeComponent(); } } </code></pre> <p>Then the 'real' constructor can act accordingly.</p> http://stackoverflow.com/questions/1685320/com-interop-registration-problem/1726333#1726333 0 Answer by Bob Nadler for COM Interop registration problem Bob Nadler 2009-11-13T00:14:06Z 2009-11-13T00:14:06Z <p>I ran into the default constructor problem. What fooled me was that the type library file will contain the class GUID reference even though that class is not being registered. A quick way to see what will be registered is to create a registry file ('assembly.reg') like this:</p> <pre><code>regasm assembly.dll /regfile:assembly.reg /codebase </code></pre> <p>There's a good discussion of exposing interfaces in <a href="http://social.msdn.microsoft.com/forums/en-US/csharpgeneral/thread/7313191a-10db-4a16-9cdd-de9fb80b378a/" rel="nofollow">COM Interop: Base class properties not exposed to COM</a>. Some example code is here: <a href="http://www.codeproject.com/KB/COM/nettocom.aspx" rel="nofollow">Exposing .NET Components to COM</a>.</p> http://stackoverflow.com/questions/1698534/how-do-i-play-movies-in-a-c-winform-application/1698570#1698570 0 Answer by Bob Nadler for How do I play movies in a C# WinForm application Bob Nadler 2009-11-09T00:54:04Z 2009-11-09T00:54:04Z <p>One possibility is to use the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx" rel="nofollow">Forms.WebBrowser</a> class. This will give you an embedded web browser so you can install what ever player and plugins you need.</p> http://stackoverflow.com/questions/1647811/c-restarting-application-conflicts-with-program-already-running-error/1647846#1647846 3 Answer by Bob Nadler for C# - Restarting application conflicts with "program already running" error Bob Nadler 2009-10-30T03:23:30Z 2009-10-30T03:23:30Z <p>Use a Mutex. e.g.: <a href="http://www.codeproject.com/KB/cs/singleinstanceapplication.aspx" rel="nofollow">A Single Instance Application which Minimizes to the System Tray when Closed</a>. This example is more complex than you probably need, but the basic single instance concept of using a Mutex works well.</p> http://stackoverflow.com/questions/1597021/c-lists-sorting-date-problem/1597069#1597069 0 Answer by Bob Nadler for C# lists - sorting date problem Bob Nadler 2009-10-20T20:22:38Z 2009-10-20T20:22:38Z <p>Parse the strings to DateTime objects and use <a href="http://msdn.microsoft.com/en-us/library/system.datetime.compare.aspx" rel="nofollow">DateTime.Compare</a>.</p> <p><a href="http://stackoverflow.com/questions/1597021/c-lists-sorting-date-problem/1597041#1597041">Chris</a> beat me to it!</p> http://stackoverflow.com/questions/1468742/creating-a-webbrowser-control-in-a-background-thread-in-backgroundworker/1468910#1468910 0 Answer by Bob Nadler for Creating a webbrowser control in a background thread in backgroundworker Bob Nadler 2009-09-23T22:43:42Z 2009-09-23T22:43:42Z <p>The thread that the Webbrowser runs in must be <a href="http://msdn.microsoft.com/en-us/library/system.threading.apartmentstate.aspx" rel="nofollow">ApartmentState</a>.STA. From a BackgroundWorker thread you'll have to use Invoke on a UI object and add the Webbrowser in that context.</p> <p>I don't think you really need to run the WebBrowser object in a background thread anyway. All of it's functionality is handled asynchronously with events. </p> http://stackoverflow.com/questions/1341927/how-to-access-datagridview-column-names-safely/1342066#1342066 0 Answer by Bob Nadler for How to access DataGridView column names safely? Bob Nadler 2009-08-27T16:03:46Z 2009-08-27T16:03:46Z <p>The only way to prevent run-time problems is to catch the <code>ArgumentException</code> when trying to access a non-existent <code>Cells</code> item. For example:</p> <pre><code>private void SetCellValue(DataGridViewCellCollection cells, string col, object value) { try { cells[col].Value = value; } catch (Exception ex) { Console.WriteLine(string.Format("Failed to set cell {0} to {1} Error={2}",col,value,ex.Message)); } } </code></pre> http://stackoverflow.com/questions/1047014/what-is-the-difference-between-computer-science-and-information-science/1047070#1047070 1 Answer by Bob Nadler for What is the difference between Computer Science and Information Science? Bob Nadler 2009-06-26T02:26:31Z 2009-06-26T02:26:31Z <p>Here's a recent Dr Dobb's article that will help answer your question: <a href="http://www.ddj.com/architect/217701907" rel="nofollow">Software Engineering ≠ Computer Science</a></p> http://stackoverflow.com/questions/1018575/login-dialog-for-windows-client-application/1018636#1018636 1 Answer by Bob Nadler for Login dialog for Windows client application Bob Nadler 2009-06-19T15:36:29Z 2009-06-19T15:36:29Z <p>I think you're stuck creating your own dialog. It's not that hard to make it look official though.</p> http://stackoverflow.com/questions/784155/usercontrol-as-an-interface-but-visible-in-the-designer/784218#784218 5 Answer by Bob Nadler for UserControl as an interface, but visible in the Designer Bob Nadler 2009-04-24T01:36:52Z 2009-04-24T01:36:52Z <p>If <code>SomeCustomerNameUserControl</code> is defined like this:</p> <pre><code>class SomeCustomerNameUserControl : UserControl, ICustomerName { } </code></pre> <p>You can still drop this control in the designer (which creates someCustomerNameUserControl1) and do this whenever you need to:</p> <pre><code>ICustomerName cName = someCustomerNameUserControl1; </code></pre> <p>Maybe I'm missing something, but I think it's that simple.</p> http://stackoverflow.com/questions/762742/c-gui-handle-problems-on-close/762773#762773 1 Answer by Bob Nadler for C# GUI handle problems on close Bob Nadler 2009-04-18T02:42:43Z 2009-04-18T02:42:43Z <p>I agree with Samuel, but would also check <code>IsDisposed</code>:</p> <pre><code>void Handler() { if (ctrl.IsDisposed || !ctrl.IsHandleCreated) return; if (ctrl.InvokeRequired) Invoke(...); else { ... } } </code></pre> http://stackoverflow.com/questions/654722/implementing-mvc-with-windows-forms/671982#671982 5 Answer by Bob Nadler for Implementing MVC with Windows Forms Bob Nadler 2009-03-23T01:36:09Z 2009-03-23T01:36:09Z <p>I wrote an article last year, <a href="http://rdn-consulting.com/blog/2008/02/01/selecting-a-mvcmvp-implementation-for-a-winforms-project/" rel="nofollow">Selecting a MVC/MVP Implementation for a Winforms Project</a>, that provides an example of a pretty simple passive view framework. Also see <a href="http://stackoverflow.com/questions/2406/looking-for-a-mvc-sample-for-winforms">here</a> and <a href="http://stackoverflow.com/questions/122388/how-would-you-implement-mvc-in-a-windowsforms-application">here</a>.</p> http://stackoverflow.com/questions/550371/plotting-with-c/550396#550396 3 Answer by Bob Nadler for Plotting with C# Bob Nadler 2009-02-15T05:56:43Z 2009-02-15T05:56:43Z <p><a href="http://zedgraph.org" rel="nofollow">ZedGraph</a> is a good choice.</p> http://stackoverflow.com/questions/533804/append-current-date-to-log-file-with-log4net/533840#533840 0 Answer by Bob Nadler for Append current Date to Log file with Log4Net Bob Nadler 2009-02-10T19:41:30Z 2009-02-10T19:41:30Z <p>Use <a href="http://logging.apache.org/log4net/release/sdk/log4net.Appender.RollingFileAppender.StaticLogFileName.html" rel="nofollow">StaticLogFileName</a>:</p> <pre><code>&lt;param name="StaticLogFileName" value="true"/&gt; </code></pre> http://stackoverflow.com/questions/193341/how-can-i-best-take-advantage-of-trac/530173#530173 3 Answer by Bob Nadler for How can I best take advantage of Trac? Bob Nadler 2009-02-09T21:54:44Z 2009-02-09T23:41:54Z <p>As mentioned in one of the comments, you can't restrict ticket or comment access based on the user. Finding or creating an external reporting system is your best bet.</p> <p>A couple of things based on experience with Trac:</p> <ol> <li><p>Creating a custom <a href="http://trac.edgewall.org/wiki/TracWorkflow" rel="nofollow">workflow</a> is pretty straight froward. The use of <a href="http://www.graphviz.org/" rel="nofollow">GraphViz</a> is a huge help for communicating states and actions. A workflow plugin (like <a href="http://trac-hacks.org/wiki/AdvancedTicketWorkflowPlugin" rel="nofollow">AdvancedTicketWorkflowPlugin</a>) that further extends the built-in functionality isn't too hard to do if you need more complex state interaction.</p></li> <li><p>For custom reporting, you can write SQL queries that take named parameters, then link to these from a wiki page:</p></li> </ol> <p>For example, the query can contain a WHERE clause like this:</p> <pre><code>WHERE datetime(t.changetime, 'unixepoch') &gt;= datetime('now','-$DAYS days') </code></pre> <p>and the wiki page can have this:</p> <pre><code>Show activity for last [http://server.com/trac/report/9?DAYS=8 8] days. </code></pre> http://stackoverflow.com/questions/508208/what-is-the-impact-of-thread-sleep1-in-c/508343#508343 7 Answer by Bob Nadler for What is the impact of Thread.Sleep(1) in C#? Bob Nadler 2009-02-03T18:35:29Z 2009-02-03T18:35:29Z <p>As stated, your loop will not hog the CPU. </p> <p><em>But beware</em>: Windows is <strong>not</strong> a real-time OS, so you will <strong>not</strong> get 1000 wakes per second from Thread.Sleep(1). If you haven't used <a href="http://msdn.microsoft.com/en-us/library/ms713413.aspx" rel="nofollow">timeBeginPeriod</a> to set your minimum resolution you'll wake about every 15 ms. Even after you've set the minimum resolution to 1 ms, you'll still only wake up every 3-4 ms.</p> <p>In order to get millisecond level timer granularity you have to use the Win32 multimedia timer (<a href="http://www.codeproject.com/KB/miscctrl/lescsmultimediatimer.aspx" rel="nofollow">C# wrapper</a>).</p> http://stackoverflow.com/questions/501988/how-do-i-best-obfuscate-my-c-product-license-verification-code/502003#502003 1 Answer by Bob Nadler for How do I best obfuscate my C# product license verification code? Bob Nadler 2009-02-02T01:48:57Z 2009-02-02T01:48:57Z <p><a href="http://stackoverflow.com/questions/501988/how-do-i-best-obfuscate-my-c-net-app-product-key-verification-code/501999#501999">Rex</a> is correct, <code>internal sealed class</code> won't hide anything. Use a one-way encryption hash (e.g. <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.md5cryptoserviceprovider.aspx" rel="nofollow">MD5CryptoServiceProvider</a>) to protect passwords and keys.</p> http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488340#488340 1 Answer by Bob Nadler for Personal project/idea database and tracking Bob Nadler 2009-01-28T16:31:15Z 2009-01-28T16:31:15Z <p>From <a href="http://stackoverflow.com/questions/1352/what-is-your-single-favorite-gtd-tool">here</a>: </p> <p>I use <a href="http://monkeygtd.tiddlyspot.com/#MonkeyGTD" rel="nofollow">MonkeyGTD</a> Alpha 3.0. It can easily be put on a thumb drive or used on-line from anywhere via <a href="http://tiddlyspot.com/" rel="nofollow">Tiddlyspot</a>.</p> <p>MonkeyGTD is labeled as an Alpha, but it's gotten very stable over the last few months. I use it with Firefox and have not had any problems. In addition to the GTD structure, the TiddlyWiki functionality is a natural way to squirrel away useful information that's easily found later with the built-in search.</p> <p>There is a learning curve, but once over it, you get hooked.</p> http://stackoverflow.com/questions/459779/unit-testing-data-binding-in-system-windows-forms/460023#460023 2 Answer by Bob Nadler for Unit-testing data binding in System.Windows.Forms Bob Nadler 2009-01-20T03:23:24Z 2009-01-20T03:23:24Z <p>I think you answered your own question -- in order for the property change event (<code>TextChanged</code>) to occur the control has to be displayed. Your unit test can just do something like this:</p> <pre><code>Form2 f = new Form2(); f.Show(); Thread.Sleep(2000); // give the Form time to open f.Data.Text = "Test 1"; Assert.AreEqual("Test 1", f.EditText.Text); f.Close(); </code></pre> <p>Instead of exposing the Form components, you'll probably want to use <a href="http://nunitforms.sourceforge.net/" rel="nofollow">NUnitForms</a> to get the Form controls:</p> <pre><code>TextBoxTester tb = new TextBoxTester("EditText1"); Assert.AreEqual("Test 1", tb["Text"]); </code></pre> http://stackoverflow.com/questions/409783/socket-shutdown-vs-socket-close/409843#409843 4 Answer by Bob Nadler for socket.shutdown vs socket.close Bob Nadler 2009-01-03T21:10:08Z 2009-01-03T21:10:08Z <p>Here's one <a href="http://publib.boulder.ibm.com/infocenter/systems/index.jsp?topic=/com.ibm.aix.progcomm/doc/progcomc/skt_shutdn.htm" rel="nofollow">explanation</a>:</p> <blockquote> <p>Once a socket is no longer required, the calling program can discard the socket by applying a close subroutine to the socket descriptor. If a reliable delivery socket has data associated with it when a close takes place, the system continues to attempt data transfer. However, if the data is still undelivered, the system discards the data. Should the application program have no use for any pending data, it can use the shutdown subroutine on the socket prior to closing it.</p> </blockquote> http://stackoverflow.com/questions/390598/winform-controls-for-net-compact-framework/390706#390706 1 Answer by Bob Nadler for WinForm Controls for .NET Compact Framework Bob Nadler 2008-12-24T04:01:00Z 2008-12-24T04:01:00Z <p>What about the <a href="http://www.smartdeviceframework.com/" rel="nofollow">Smart Device Framework</a>? The GUI components don't look as fancy as those in the Resco toolkit, but SDF seems to have a broader basic selection (<a href="http://www.opennetcf.com/library/sdf/" rel="nofollow">SDF doc</a>). I've never used either (have only used MFC on WinCE), but would also like to hear about CF development experiences.</p> http://stackoverflow.com/questions/341663/bug-tracker-feature-set-comparison/341756#341756 1 Answer by Bob Nadler for Bug Tracker - Feature set - Comparison Bob Nadler 2008-12-04T19:30:03Z 2008-12-04T19:30:03Z <p>It's a little old, but here's a good comparison resource: <a href="http://www.pensieve.org/ow.asp?BugTrackingSoftwareDiscussions" rel="nofollow">Bug Tracking Software Discussions</a> that was compiled from Code Project discussions. </p> http://stackoverflow.com/questions/333269/what-web-application-framework-should-i-use-for-a-web-gallery/333311#333311 2 Answer by Bob Nadler for What web application framework should I use for a web gallery? Bob Nadler 2008-12-02T08:11:27Z 2008-12-02T08:11:27Z <p>If you don't want to re-invent the wheel you could use <a href="http://gallery.menalto.com/" rel="nofollow">Gallery2</a> (requirements <a href="http://codex.gallery2.org/Gallery2:Installation_Requirements" rel="nofollow">here</a>). It runs on IIS -- you'd just need PHP and a database. It's very configurable (including user accounts), has lots of plugins, and its open source if that's not enough. Also, the development and support communities are large and active. </p> http://stackoverflow.com/questions/251391/why-is-lockthis-bad/251539#251539 1 Answer by Bob Nadler for Why is lock(this) {...} bad? Bob Nadler 2008-10-30T19:59:31Z 2008-10-30T19:59:31Z <p>There's also some good discussion about this here: <a href="http://stackoverflow.com/questions/46909/is-this-the-proper-use-of-a-mutex">Is this the proper use of a mutex?</a> </p> http://stackoverflow.com/questions/31673/wifi-management-on-xp-sp2-sp3 0 Wifi Management on XP (SP2/SP3) Bob Nadler 2008-08-28T04:38:15Z 2008-10-21T10:24:11Z <p>Wifi support on Vista is fine, but <a href="http://msdn.microsoft.com/en-us/library/bb204766.aspx" rel="nofollow">Native Wifi on XP</a> is half baked. <a href="http://msdn.microsoft.com/en-us/library/aa504121.aspx" rel="nofollow">NDIS 802.11 Wireless LAN Miniport Drivers</a> only gets you part of the way there (e.g. network scanning). From what I've read (and tried), the 802.11 NDIS drivers on XP will <em>not</em> allow you to configure a wireless connection. You have to use the Native Wifi API in order to do this. (Please, correct me if I'm wrong here.) Applications like <a href="http://www.metageek.net/products/inssider" rel="nofollow">InSSIDer</a> have helped me to understand the APIs, but InSSIDer is just a scanner and is not designed to configure Wifi networks.</p> <p>So, the question is: where can I find some code examples (C# or C++) that deal with the configuration of Wifi networks on XP -- e.g. profile creation and connection management?</p> <p>I should note that this is a XP Embedded application on a closed system where we can't use the built-in Wireless Zero Configuration (WZC). We have to build all Wifi management functionality into our .NET application.</p> <p>Yes, I've Googled myself blue. It seems that someone should have a solution to this problem, but I can't find it. That's why I'm asking here.</p> <p>Thanks.</p> http://stackoverflow.com/questions/219594/net-whats-the-best-way-to-implement-a-catch-all-exceptions-handler/219646#219646 9 Answer by Bob Nadler for .NET - What's the best way to implement a "catch all exceptions handler" Bob Nadler 2008-10-20T19:48:48Z 2008-10-20T19:48:48Z <p>For Winform applications, in addition to AppDomain.CurrentDomain.UnhandledException I also use <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.application.threadexception.aspx" rel="nofollow">Application.ThreadException</a> and <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.application.setunhandledexceptionmode.aspx" rel="nofollow">Application.SetUnhandledExceptionMode</a> (w/ UnhandledExceptionMode.CatchException). This combination seems to catch everything.</p> http://stackoverflow.com/questions/215267/how-do-you-fix-a-trac-installation-that-begins-giving-errors-relating-to-pythone/215303#215303 0 Answer by Bob Nadler for How do you fix a Trac installation that begins giving errors relating to PYTHON_EGG_CACHE? Bob Nadler 2008-10-18T17:25:16Z 2008-10-18T17:25:16Z <p>I ran into the same problem when upgrading from Trac 10.4 to 0.11 earlier this year. Something must have changed for this problem to have just suddenly appeared -- an updated Python or Apache installation?</p> <p>I don't remember all of the permutations I tried to solve this, but I ended up having to use <code>SetEnv PYTHON_EGG_CACHE /.python-eggs</code> and create /.python-eggs with 777 permissions. This might not be the best solution, but it fixed the problem. </p> <p>I never investigated what the root cause was. As <a href="http://stackoverflow.com/questions/215267/how-do-you-fix-a-trac-installation-that-begins-giving-errors-relating-to-python#215298">agnul</a> says, this may have been fixed in a subsequent Trac release.</p> http://stackoverflow.com/questions/203456/how-can-i-get-the-icon-from-the-executable-file-only-having-an-instance-of-its-p/203637#203637 0 Answer by Bob Nadler for How can I get the icon from the executable file only having an instance of it's Process in C# Bob Nadler 2008-10-15T03:33:10Z 2008-10-15T03:39:21Z <p>Use the <a href="http://www.pinvoke.net/default.aspx/shell32/ExtractIconEx.html" rel="nofollow">ExtractIconEx</a> (and <a href="http://msdn.microsoft.com/en-us/library/ms648069.aspx" rel="nofollow">here</a>) p/invoke. You can extract small and large icons from any dll or exe. Shell32.dll itself has over 200 icons that are quite useful for a standard Windows application. You just have to first figure out what the index is for the icon(s) you want.</p> <p>Edit: I did quick SO search and found <a href="http://stackoverflow.com/questions/189031/set-same-icon-for-all-my-forms#189618">this</a>. The index 0 icon is the application icon.</p> http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c/176470#176470 1 Answer by Bob Nadler for How to Build a simple HTTP server in C Bob Nadler 2008-10-06T22:30:51Z 2008-10-06T22:30:51Z <p><a href="http://shttpd.sourceforge.net/" rel="nofollow">Simple HTTP Daemon</a> (SHTTPD) is pretty good. In particular, it's embeddable and compiles under Windows, Windows CE, and UNIX.</p> http://stackoverflow.com/questions/172372/tracing-versus-logging-and-how-does-log4net-fit-in/172488#172488 2 Answer by Bob Nadler for Tracing versus Logging and how does log4net fit in? Bob Nadler 2008-10-05T19:18:24Z 2008-10-05T19:18:24Z <p>log4net is well suited for both. We differentiate between logging that's useful for post-release diagnostics and "tracing" for development purposes by using the DEBUG logging level. Specifically, developers log their tracing output (things that are only of interest during development) using <code>Debug()</code>. Our development configuration sets the Level to DEBUG:</p> <pre><code>&lt;root&gt; &lt;level value="DEBUG" /&gt; ... &lt;/root&gt; </code></pre> <p>Before the product is released, the level is changed to "INFO":</p> <pre><code>&lt;level value="INFO" /&gt; </code></pre> <p>This removes all DEBUG output from the release logging but keeps INFO/WARN/ERROR.</p> <p>There are other log4net tools, like filters, hierarchical (by namespace) logging, multiple targets, etc., by we've found the above simple method quite effective.</p> http://stackoverflow.com/questions/193341/how-can-i-best-take-advantage-of-trac/530173#530173 Comment by Bob Nadler on How can I best take advantage of Trac? Bob Nadler 2009-12-02T16:45:20Z 2009-12-02T16:45:20Z I've never used WikiRbacPatch, but based on the documentation the added access control would only apply to wiki pages. I do not believe this patch would affect the results of a custom query. http://stackoverflow.com/questions/1784303/c-usercontrol-constructor-with-parameters/1784356#1784356 Comment by Bob Nadler on C# UserControl constructor with parameters Bob Nadler 2009-11-23T17:09:50Z 2009-11-23T17:09:50Z It was the duplicate InitializeComponent() calls that caught my eye. Also, a private parameterless constructor with a UserControl works with the VS designer for me. http://stackoverflow.com/questions/1685320/com-interop-registration-problem/1685960#1685960 Comment by Bob Nadler on COM Interop registration problem Bob Nadler 2009-11-12T23:54:39Z 2009-11-12T23:54:39Z +1 for the default constructor. http://stackoverflow.com/questions/1647811/c-restarting-application-conflicts-with-program-already-running-error/1647828#1647828 Comment by Bob Nadler on C# - Restarting application conflicts with "program already running" error Bob Nadler 2009-10-30T03:42:43Z 2009-10-30T03:42:43Z Sorry for the down vote, but polling with a Sleep is really ugly. I wouldn't recommend it for any purpose. http://stackoverflow.com/questions/1468742/creating-a-webbrowser-control-in-a-background-thread-in-backgroundworker/1468910#1468910 Comment by Bob Nadler on Creating a webbrowser control in a background thread in backgroundworker Bob Nadler 2009-09-23T23:12:22Z 2009-09-23T23:12:22Z OK. Then instead of using BackgroundWorker, create a real thread and use the .SetApartmentState(ApartmentState.STA). That may work. http://stackoverflow.com/questions/654722/implementing-mvc-with-windows-forms/671982#671982 Comment by Bob Nadler on Implementing MVC with Windows Forms Bob Nadler 2009-05-02T02:37:29Z 2009-05-02T02:37:29Z @gnomixa I'm not sure why you're having a problem. I just downloaded and the Form1.cs designer load, build, and run worked fine. Maybe CatView1.cs didn't get unpacked properly? http://stackoverflow.com/questions/533804/append-current-date-to-log-file-with-log4net/533840#533840 Comment by Bob Nadler on Append current Date to Log file with Log4Net Bob Nadler 2009-02-10T20:38:01Z 2009-02-10T20:38:01Z With StaticLogFileName true, your rolling files will be date/time stamped instead of sequential (.1, .2, etc.). Now that I look at it, you have to set the rollingStyle to either &quot;Date&quot; or &quot;Composite&quot; for this to work. The RollingFileAppender doc. is pretty clear on these settings. http://stackoverflow.com/questions/508208/what-is-the-impact-of-thread-sleep1-in-c/508343#508343 Comment by Bob Nadler on What is the impact of Thread.Sleep(1) in C#? Bob Nadler 2009-02-06T03:00:51Z 2009-02-06T03:00:51Z <a href="http://www.pinvoke.net/default.aspx/winmm.timeBeginPeriod" rel="nofollow">pinvoke.net/default.aspx/winmm.timeBeginPeriod/&hellip;</a> According to the MSDN doc, timeBeginPeriod should be matched with a timeEndPeriod call. Also note that &quot;This function affects a global Windows setting.&quot; and can affect system performance. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/235305#235305 Comment by Bob Nadler on What is your best programmer joke? Bob Nadler 2008-10-25T02:08:19Z 2008-10-25T02:08:19Z I heard that one as the women how was married three times but was still a virgin. The first two husbands died tragically on their wedding day and the third was an IBM salesman... http://stackoverflow.com/questions/172372/tracing-versus-logging-and-how-does-log4net-fit-in/172488#172488 Comment by Bob Nadler on Tracing versus Logging and how does log4net fit in? Bob Nadler 2008-10-05T20:37:17Z 2008-10-05T20:37:17Z Most of the time I think that's true. There are specialized situations, like tracking real-time device interfaces for example, where a general purpose tool like log4net might not be the best choice. BTW: We use DEBUG because it's a predefined Level. You can also define your own level(s): e.g TRACE http://stackoverflow.com/questions/156046/show-a-form-without-stealing-focus-in-c/156117#156117 Comment by Bob Nadler on Show a Form without stealing focus (in C#) Bob Nadler 2008-10-01T03:39:25Z 2008-10-01T03:39:25Z Huh? That is the purpose of the notification -- to put it up and regain focus back to the originally active form. http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/110192#110192 Comment by Bob Nadler on How to access the current Subversion build number? Bob Nadler 2008-09-21T04:08:12Z 2008-09-21T04:08:12Z No, you have to make a file change and commit for this to work. I've always just included the REVISION const in the file that contains the version number or release notes that is normally updated prior to a release anyway.