User Burton - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T19:18:56Zhttp://stackoverflow.com/feeds/user/1066http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/31812/performance-issues-regarding-access-2003-and-the-ole-object-data-type0Performance issues regarding Access 2003 and the OLE Object data typeBurton2008-08-28T07:47:37Z2009-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-net2Get a list of current windows, and give one of them focus, in .NetBurton2008-08-30T09:46:06Z2008-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#318420Answer by Burton for Should programmers be excellent typists?Burton2008-08-28T08:21:22Z2008-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#238330Answer by Burton for Natural language date/time parser for .NET?Burton2008-08-23T01:41:34Z2008-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 < 1 Then Return "Now"
Dim str As String
If diff.Duration.TotalDays > 365 Then
str = CInt(diff.Duration.TotalDays / 365).ToString() & " years"
ElseIf diff.Duration.TotalDays > 30 Then
str = CInt(diff.TotalDays / 30).ToString() & " months"
ElseIf diff.Duration.TotalHours > 24 Then
str = CInt(diff.Duration.TotalHours / 24) & " days"
ElseIf diff.Duration.TotalMinutes > 60 Then
str = CInt(diff.Duration.TotalMinutes / 60) & " minutes"
Else
str = CInt(diff.Duration.TotalMinutes).ToString() & " minutes"
End If
If str.StartsWith("1") Then str = str.SubString(0, str.Length - 1)
If diff.TotalDays > 0 Then
str &= " ago"
Else
str &= " 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#95121Answer by Burton for Do you name controls on forms using the same convention as a private variable?Burton2008-08-13T06:19:16Z2008-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#856016Answer by Burton for What is your solution to the FizzBuzz problem?Burton2008-08-12T06:55:12Z2008-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>