User Burton - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T19:18:56Z http://stackoverflow.com/feeds/user/1066 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/31812/performance-issues-regarding-access-2003-and-the-ole-object-data-type 0 Performance issues regarding Access 2003 and the OLE Object data type Burton 2008-08-28T07:47:37Z 2009-03-09T23:45:58Z <p>In MS Access 2003 (I know, I know), I'm using the OLE Object data type to persist the sate of some objects that are marked as serializable (just using a IO.BinaryFormatter to serialize to a MemoryStream, and then saving that to the db as a Byte array). Does this work pretty much like a varbinary, or a blob? Are there any gotchas looming in the shadows that anyone knows about? Any performance advise or war stories? I'd profit from any advice.</p> http://stackoverflow.com/questions/35834/get-a-list-of-current-windows-and-give-one-of-them-focus-in-net 2 Get a list of current windows, and give one of them focus, in .Net Burton 2008-08-30T09:46:06Z 2008-09-02T17:47:51Z <p>Hey all, </p> <p>Without resorting to PInvoke, is there a way in .net to find out what windows are open? This is slightly different than asking what applications are running in memory. For example, Firefox could be running, but could be more than one window. Basically, I just want to be privy to the same information that the taskbar (and alt-tab?) is.</p> <p>Also, once I have a reference to a window, is there any way to programatically give it focus?</p> <p>Is there any way to do this with managed code?</p> http://stackoverflow.com/questions/31757/should-programmers-be-excellent-typists/31842#31842 0 Answer by Burton for Should programmers be excellent typists? Burton 2008-08-28T08:21:22Z 2008-08-28T08:21:22Z <p>While I agree that keyboard skills aren't central to being a truly good problem solver, I must admit that they help. The quicker you can get your ideas written down, the better. Your brain always has more things for you to type. I think that too many Visual Studio users don't even know keyboard shortcuts that advance the caret to the next word, etc. There's a co-worker of mine, and I really envy his alacrity with moving the cursor around VS using the keyboard (he attributes this skill to MUD's).</p> http://stackoverflow.com/questions/23689/natural-language-date-time-parser-for-net/23833#23833 0 Answer by Burton for Natural language date/time parser for .NET? Burton 2008-08-23T01:41:34Z 2008-08-24T01:27:34Z <p>I'm not aware of one, but it sounded like a cool problem, so here's my whack at it (VB.NET):</p> <pre><code>Private Function ConvertDateTimeToStringRelativeToNow(ByVal d As DateTime) As String Dim diff As TimeSpan = DateTime.Now().Subtract(d) If diff.Duration.TotalMinutes &lt; 1 Then Return "Now" Dim str As String If diff.Duration.TotalDays &gt; 365 Then str = CInt(diff.Duration.TotalDays / 365).ToString() &amp; " years" ElseIf diff.Duration.TotalDays &gt; 30 Then str = CInt(diff.TotalDays / 30).ToString() &amp; " months" ElseIf diff.Duration.TotalHours &gt; 24 Then str = CInt(diff.Duration.TotalHours / 24) &amp; " days" ElseIf diff.Duration.TotalMinutes &gt; 60 Then str = CInt(diff.Duration.TotalMinutes / 60) &amp; " minutes" Else str = CInt(diff.Duration.TotalMinutes).ToString() &amp; " minutes" End If If str.StartsWith("1") Then str = str.SubString(0, str.Length - 1) If diff.TotalDays &gt; 0 Then str &amp;= " ago" Else str &amp;= " from now" End If Return str End Function </code></pre> <p>It's really not as sophisticated as ones that already exist, but it works alright I guess. Could be a nice extension method.</p> http://stackoverflow.com/questions/9433/do-you-name-controls-on-forms-using-the-same-convention-as-a-private-variable/9512#9512 1 Answer by Burton for Do you name controls on forms using the same convention as a private variable? Burton 2008-08-13T06:19:16Z 2008-08-13T06:19:16Z <p>For me, the big win with the naming convention of prepending an underscore to private members has to do with Intellisense. Since underscore precedes any letter in the alphabet, when I do a ctrl-space to bring up Intellisense, there are all of my _privateMembers, right at the top.</p> <p>Controls, though, are a different story, as far as naming goes. I think that scope is assumed, and prepending a few letters to indicate type (txtMyGroovyTextbox, for example) makes more sense for the same reason; controls are grouped in Intellisense by type.</p> <p>But at work, it's VB all the way, and we do mPrivateMember. I think the m might stand for module.</p> http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/8560#8560 16 Answer by Burton for What is your solution to the FizzBuzz problem? Burton 2008-08-12T06:55:12Z 2008-08-12T07:11:10Z <p>All of you people who are checking to see if the number is divisible by three AND that it is divisible by five will find it more concise to consider whether the number is divisible by fifteen. This isn't rocket surgery. And brevity is the soul of wit.</p>