User Bob Nadler - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T12:08:36Zhttp://stackoverflow.com/feeds/user/2514http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1784303/c-usercontrol-constructor-with-parameters/1784356#17843561Answer by Bob Nadler for C# UserControl constructor with parametersBob Nadler2009-11-23T16:39:11Z2009-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#17263330Answer by Bob Nadler for COM Interop registration problemBob Nadler2009-11-13T00:14:06Z2009-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#16985700Answer by Bob Nadler for How do I play movies in a C# WinForm applicationBob Nadler2009-11-09T00:54:04Z2009-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#16478463Answer by Bob Nadler for C# - Restarting application conflicts with "program already running" errorBob Nadler2009-10-30T03:23:30Z2009-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#15970690Answer by Bob Nadler for C# lists - sorting date problemBob Nadler2009-10-20T20:22:38Z2009-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#14689100Answer by Bob Nadler for Creating a webbrowser control in a background thread in backgroundworkerBob Nadler2009-09-23T22:43:42Z2009-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#13420660Answer by Bob Nadler for How to access DataGridView column names safely?Bob Nadler2009-08-27T16:03:46Z2009-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#10470701Answer by Bob Nadler for What is the difference between Computer Science and Information Science?Bob Nadler2009-06-26T02:26:31Z2009-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#10186361Answer by Bob Nadler for Login dialog for Windows client applicationBob Nadler2009-06-19T15:36:29Z2009-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#7842185Answer by Bob Nadler for UserControl as an interface, but visible in the DesignerBob Nadler2009-04-24T01:36:52Z2009-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#7627731Answer by Bob Nadler for C# GUI handle problems on closeBob Nadler2009-04-18T02:42:43Z2009-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#6719825Answer by Bob Nadler for Implementing MVC with Windows FormsBob Nadler2009-03-23T01:36:09Z2009-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#5503963Answer by Bob Nadler for Plotting with C#Bob Nadler2009-02-15T05:56:43Z2009-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#5338400Answer by Bob Nadler for Append current Date to Log file with Log4NetBob Nadler2009-02-10T19:41:30Z2009-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><param name="StaticLogFileName" value="true"/>
</code></pre>
http://stackoverflow.com/questions/193341/how-can-i-best-take-advantage-of-trac/530173#5301733Answer by Bob Nadler for How can I best take advantage of Trac?Bob Nadler2009-02-09T21:54:44Z2009-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') >= 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#5083437Answer by Bob Nadler for What is the impact of Thread.Sleep(1) in C#?Bob Nadler2009-02-03T18:35:29Z2009-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#5020031Answer by Bob Nadler for How do I best obfuscate my C# product license verification code?Bob Nadler2009-02-02T01:48:57Z2009-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#4883401Answer by Bob Nadler for Personal project/idea database and trackingBob Nadler2009-01-28T16:31:15Z2009-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#4600232Answer by Bob Nadler for Unit-testing data binding in System.Windows.FormsBob Nadler2009-01-20T03:23:24Z2009-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#4098434Answer by Bob Nadler for socket.shutdown vs socket.closeBob Nadler2009-01-03T21:10:08Z2009-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#3907061Answer by Bob Nadler for WinForm Controls for .NET Compact FrameworkBob Nadler2008-12-24T04:01:00Z2008-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#3417561Answer by Bob Nadler for Bug Tracker - Feature set - ComparisonBob Nadler2008-12-04T19:30:03Z2008-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#3333112Answer by Bob Nadler for What web application framework should I use for a web gallery?Bob Nadler2008-12-02T08:11:27Z2008-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#2515391Answer by Bob Nadler for Why is lock(this) {...} bad?Bob Nadler2008-10-30T19:59:31Z2008-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-sp30Wifi Management on XP (SP2/SP3)Bob Nadler2008-08-28T04:38:15Z2008-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#2196469Answer by Bob Nadler for .NET - What's the best way to implement a "catch all exceptions handler"Bob Nadler2008-10-20T19:48:48Z2008-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#2153030Answer by Bob Nadler for How do you fix a Trac installation that begins giving errors relating to PYTHON_EGG_CACHE?Bob Nadler2008-10-18T17:25:16Z2008-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#2036370Answer 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 Nadler2008-10-15T03:33:10Z2008-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#1764701Answer by Bob Nadler for How to Build a simple HTTP server in CBob Nadler2008-10-06T22:30:51Z2008-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#1724882Answer by Bob Nadler for Tracing versus Logging and how does log4net fit in?Bob Nadler2008-10-05T19:18:24Z2008-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><root>
<level value="DEBUG" />
...
</root>
</code></pre>
<p>Before the product is released, the level is changed to "INFO":</p>
<pre><code><level value="INFO" />
</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#530173Comment by Bob Nadler on How can I best take advantage of Trac?Bob Nadler2009-12-02T16:45:20Z2009-12-02T16:45:20ZI'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#1784356Comment by Bob Nadler on C# UserControl constructor with parametersBob Nadler2009-11-23T17:09:50Z2009-11-23T17:09:50ZIt 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#1685960Comment by Bob Nadler on COM Interop registration problemBob Nadler2009-11-12T23:54:39Z2009-11-12T23:54:39Z+1 for the default constructor.http://stackoverflow.com/questions/1647811/c-restarting-application-conflicts-with-program-already-running-error/1647828#1647828Comment by Bob Nadler on C# - Restarting application conflicts with "program already running" errorBob Nadler2009-10-30T03:42:43Z2009-10-30T03:42:43ZSorry 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#1468910Comment by Bob Nadler on Creating a webbrowser control in a background thread in backgroundworkerBob Nadler2009-09-23T23:12:22Z2009-09-23T23:12:22ZOK. 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#671982Comment by Bob Nadler on Implementing MVC with Windows FormsBob Nadler2009-05-02T02:37:29Z2009-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#533840Comment by Bob Nadler on Append current Date to Log file with Log4NetBob Nadler2009-02-10T20:38:01Z2009-02-10T20:38:01ZWith 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 "Date" or "Composite" 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#508343Comment by Bob Nadler on What is the impact of Thread.Sleep(1) in C#?Bob Nadler2009-02-06T03:00:51Z2009-02-06T03:00:51Z<a href="http://www.pinvoke.net/default.aspx/winmm.timeBeginPeriod" rel="nofollow">pinvoke.net/default.aspx/winmm.timeBeginPeriod/…</a>
According to the MSDN doc, timeBeginPeriod should be matched with a timeEndPeriod call. Also note that "This function affects a global Windows setting." and can affect system performance.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/235305#235305Comment by Bob Nadler on What is your best programmer joke?Bob Nadler2008-10-25T02:08:19Z2008-10-25T02:08:19ZI 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#172488Comment by Bob Nadler on Tracing versus Logging and how does log4net fit in?Bob Nadler2008-10-05T20:37:17Z2008-10-05T20:37:17ZMost 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 TRACEhttp://stackoverflow.com/questions/156046/show-a-form-without-stealing-focus-in-c/156117#156117Comment by Bob Nadler on Show a Form without stealing focus (in C#)Bob Nadler2008-10-01T03:39:25Z2008-10-01T03:39:25ZHuh? 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#110192Comment by Bob Nadler on How to access the current Subversion build number?Bob Nadler2008-09-21T04:08:12Z2008-09-21T04:08:12ZNo, 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.