User Bob King - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T18:05:39Z http://stackoverflow.com/feeds/user/6897 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/133125/any-other-ides-for-lotus-notes-other-than-domino-designer 2 Any other IDEs for Lotus Notes other than Domino Designer? Bob King 2008-09-25T12:50:25Z 2009-11-11T14:01:18Z <p>Are there any other IDEs worth my time for Lotus Notes development? We're doing mostly LotusScript development and would kill for features of Eclipse or Visual Studio, like "Show Declaration". I know there's <a href="http://www.ibm.com/developerworks/lotus/library/notes-eclipse/" rel="nofollow">an Eclipse plugin for Java development in Notes</a>, but seems like it <em>only</em> does Java, and we have too many pieces of legacy code in LotusScript to abandon it.</p> http://stackoverflow.com/questions/1268855/clickonce-questions/1268894#1268894 1 Answer by Bob King for ClickOnce Questions Bob King 2009-08-12T21:40:21Z 2009-08-13T14:05:55Z <p>Add the app.config to the ServiceConsole's project as a link (Add Existing Item, Navigate to it, and then choose "Add as Link" from the "Add" Split button). You'll then need to set that it's "Content" and "Always Copy" in the build properties for the link. Lastly, go into the "Files" dialog for the Publish tab, and make sure it's listed there. You may need to "Show all files" to see it.</p> <p>For your second question: I have a tendency not to write to an app's settings file because the newly written settings are per-user. They get buried in one of those hidden folders inside the user's profile directory. I'd recommend using a fixed location (like CSIDL_COMMON_DOCUMENTS) using this code:</p> <pre><code>Private Declare Function SHGetSpecialFolderPath Lib "shell32.dll" Alias "SHGetSpecialFolderPathA" _ (ByVal hwndOwner As IntPtr, &lt;Out()&gt; ByVal lpszPath As StringBuilder, ByVal nFolder As Integer, ByVal fCreate As Boolean) As Boolean Private Const CSIDL_COMMON_DOCUMENTS As Integer = &amp;H2E &lt;snip&gt; Dim lpszPath As New StringBuilder(260) If SHGetSpecialFolderPath(IntPtr.Zero, lpszPath, CSIDL_COMMON_DOCUMENTS, True) Then _sharedDocsDir = lpszPath.ToString() Else Throw New InvalidDataException("Couldn't get working directory root.") End If </code></pre> <p>To answer your final question, I think the reason it works fine for me is that we use System.Configuration, instead of the designer-generated code. What you can probably do is pull your settings classes out to third assembly (fourth?) and just reference that assembly by both projects. It would probably work better than linking the app.config.</p> http://stackoverflow.com/questions/1213144/data-paging-in-sql-server-ce-compact-edition/1239572#1239572 1 Answer by Bob King for Data paging in SQL Server CE (Compact Edition) Bob King 2009-08-06T15:12:14Z 2009-08-06T15:12:14Z <p>Honestly, probably the fastest thing to do is use an <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlserverce.sqlcedatareader.aspx" rel="nofollow">SqlCeDataReader</a> and call .Read() 10 times. Then when the user moves to the next page, you're already pointing at the 11th result, and can read 10 more. If you need to go backwards, you can either cache your results or switch to an <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlserverce.sqlceresultset.aspx" rel="nofollow">SqlCeResultSet</a> which supports <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlserverce.sqlceresultset.readrelative.aspx" rel="nofollow">seeking</a>. </p> <p>Also, SqlCeDataReader/Result is, from experience, the absolute fastest way to interact with the database on the desktop. It can be literally 100 times faster than using DataSets/DataAdapters.</p> http://stackoverflow.com/questions/1224001/how-to-string-format-the-day-of-the-month-in-c/1224023#1224023 0 Answer by Bob King for How to String.Format the day of the month in c#? Bob King 2009-08-03T18:56:55Z 2009-08-03T18:56:55Z <p>DateTime.Now.Day.ToString()</p> http://stackoverflow.com/questions/1202422/lucene-query-syntax/1202513#1202513 -1 Answer by Bob King for Lucene Query Syntax Bob King 2009-07-29T19:31:20Z 2009-07-29T19:31:20Z <p>Try</p> <pre><code>+courseName:cooking +mandatory:Y </code></pre> <p>We use pretty similar queries and this works for us:</p> <pre><code>+ProdLineNum:1920b +HouseBrand:1 </code></pre> <p>This selects everything in product line 1920b that is also a house brand (generic).</p> http://stackoverflow.com/questions/1202111/major-differences-between-visual-studio-pro-2005-and-2008/1202131#1202131 1 Answer by Bob King for Major differences between Visual Studio Pro 2005 and 2008? Bob King 2009-07-29T18:25:01Z 2009-07-29T18:25:01Z <p>2008 works much better with XAML, provides intellisense for LINQ, has improved designers for SQL CE, launches faster, and crashes less.</p> http://stackoverflow.com/questions/1168203/incorporating-the-windows-7-onscreen-keyboard-into-a-wpf-app/1202108#1202108 2 Answer by Bob King for Incorporating the Windows 7 onscreen keyboard into a WPF app Bob King 2009-07-29T18:20:40Z 2009-07-29T18:20:40Z <p>The best thing I've found is this:</p> <p><a href="http://interactiveasp.net/blogs/natesstuff/archive/2008/10/01/ink-in-wpf-using-textinputpanel-for-text-input.aspx" rel="nofollow">http://interactiveasp.net/blogs/natesstuff/archive/2008/10/01/ink-in-wpf-using-textinputpanel-for-text-input.aspx</a></p> <p>It's using an interop out of WPF, but seems to work really well.</p> <p>EDIT: I wish I was the one who actually wrote it, but all I did was find it...</p> http://stackoverflow.com/questions/202491/automatically-increment-minimum-required-version-in-a-clickonce-deployment 2 Automatically increment "minimum required version" in a ClickOnce deployment? Bob King 2008-10-14T19:25:02Z 2009-07-28T21:56:37Z <p>Is there a way to automatically increment the "minimum required version" fields in a ClickOnce deployment to always equal the current build number? Basically, I always want my deployment to be automatically updated at launch.</p> <p>I suspect I'm going to need a some pre-/post-build events, but I hope there's an easier way.</p> http://stackoverflow.com/questions/1196492/should-you-code-in-case-the-threads-die-or-freeze/1196638#1196638 1 Answer by Bob King for Should you code in case the threads die or freeze? Bob King 2009-07-28T20:47:13Z 2009-07-28T20:47:13Z <p>Threads don't just hang or die unless there is a bug in the user code. The chances of the OS/Framework screwing up is so negligible that it's, for practical purposes, impossible. It's like worry about the hard disk not writing a file even though File.WriteAllBytes() succeeds. It just doesn't happen.</p> <p>That said, <a href="http://stackoverflow.com/questions/1196492/should-you-code-in-case-the-threads-die-or-freeze/1196568#1196568">wildcard</a> brings up a good point that an unhandled exception in a worker thread populates up as an unhandled exception through the entire AppDomain.</p> http://stackoverflow.com/questions/1156197/how-often-should-you-compact-an-sql-ce-database 0 How often should you compact an SQL CE database? Bob King 2009-07-20T22:00:14Z 2009-07-22T15:24:23Z <p>Is there even a need to periodically compact SQL CE databases? Will auto shrink suffice? Our average database size is about 100Mb, with large users hitting 400-500Mb (but those are very rare). If we do have to compact manually, how do we tell when we should? Is there a way to tell the fragmentation level or percent of wasted space programmatically? If not, what other threshold can we use?</p> <p>The previous version of the product was built on an (<em>gasp</em>) MS Access database, so we had to periodically compact just to keep it working.</p> http://stackoverflow.com/questions/970702/adding-rowguid-column-broke-this-stored-procedure/1131668#1131668 1 Answer by Bob King for Adding rowguid column broke this Stored Procedure? Bob King 2009-07-15T14:14:38Z 2009-07-15T14:14:38Z <p><a href="http://www.codinghorror.com/blog/archives/000117.html" rel="nofollow">Don't write stored procedures...</a></p> <p>I'll get my coat.</p> http://stackoverflow.com/questions/1131615/is-there-a-way-to-install-the-net-3-5-framework-without-rebooting/1131632#1131632 3 Answer by Bob King for Is there a way to install the .NET 3.5 Framework without rebooting? Bob King 2009-07-15T14:08:28Z 2009-07-15T14:08:28Z <p>2.0 is really the thing that requires the reboot. 3.5 is just 2.0 with some things bolted on. You must reboot after installing, otherwise your installation may be incomplete. Can you schedule the installation and reboot to occur at a specific time, when the servers aren't utilized?</p> http://stackoverflow.com/questions/1014242/valid-filename-check-what-is-the-best-way/1014351#1014351 1 Answer by Bob King for Valid filename check. What is the best way? Bob King 2009-06-18T18:20:23Z 2009-06-18T18:20:23Z <p>How about <a href="http://msdn.microsoft.com/en-us/library/system.io.path.getinvalidfilenamechars.aspx" rel="nofollow">Path.GetInvalidFileNameChars</a> and <a href="http://msdn.microsoft.com/en-us/library/system.io.path.getinvalidpathchars.aspx" rel="nofollow">Path.GetInvalidPathChars</a>?</p> <pre><code>Public Shared Function FilenameIsOK(ByVal fileNameAndPath as String) as Boolean Dim fileName = Path.GetFileName(fileNameAndPath) Dim directory = Path.GetDirectoryName(fileNameAndPath) For each c in Path.GetInvalidFileNameChars() If fileName.Contains(c) Then Return False End If Next For each c in Path.GetInvalidPathChars() If directory.Contains(c) Then Return False End If Next Return True End Function </code></pre> http://stackoverflow.com/questions/1012740/wpf-read-only-say-textbox-and-binding/1012765#1012765 1 Answer by Bob King for WPF: Read only say TextBox and binding. Bob King 2009-06-18T13:56:22Z 2009-06-18T13:56:22Z <p>I would use a &lt;TextBlock/&gt; or a &lt;Label/&gt; to display static data instead of a &lt;TextBox/&gt;.</p> http://stackoverflow.com/questions/980947/convert-c-to-vb-net-using-mvccontrib-blockrenderer-to-render-a-partial-view-to/981118#981118 2 Answer by Bob King for Convert C# to VB.Net - Using MVCContrib Blockrenderer to render a partial view to a string Bob King 2009-06-11T13:36:24Z 2009-06-11T18:49:16Z <p>This line:</p> <pre><code>Dim s As String = blockRenderer.Capture(RenderPartialExtensions.RenderPartial(h, UserControl, viewData)) </code></pre> <p>is NOT equivalent to your original line:</p> <pre><code>string s = blockRenderer.Capture( () =&gt; RenderPartialExtensions.RenderPartial(h, userControl, viewData) ); </code></pre> <p>The C# example is using a lambda, while the VB example is just calling the method directly, which doesn't return a value. The compiler isn't lying to you.</p> <p>Try this instead:</p> <pre><code>Dim s = blockRender.Capture(New Action(Of String)(Function() RenderPartialExtensions.RenderPartial(h, UserControl, viewData))) </code></pre> <p>I took a look at Capture and it's expecting an Action which is just a delegate, and it looks like the compiler can't infer the delegate's signature to wrap the anonymous function. So we'll give it a helping hand and wrap the lambda ourselves.</p> http://stackoverflow.com/questions/956414/how-do-i-debug-mangled-soap-requests 0 How do I debug mangled soap requests? Bob King 2009-06-05T15:13:48Z 2009-06-08T06:32:52Z <p>Lately, we've been seeing exceptions like this in our .NET (.asmx) webservices:</p> <pre><code>System.Web.Services.Protocols.SoapException: Server was unable to read request. ---&gt; System.InvalidOperationException: There is an error in XML document (868, -3932). ---&gt; System.Xml.XmlException: '.', hexadecimal value 0x00, is an invalid character. Line 868, position -3932. at System.Xml.XmlTextReaderImpl.Throw(Exception e) at System.Xml.XmlTextReaderImpl.Throw(String res, String[] args) at System.Xml.XmlTextReaderImpl.Throw(Int32 pos, String res, String[] args) at System.Xml.XmlTextReaderImpl.ThrowInvalidChar(Int32 pos, Char invChar) at System.Xml.XmlTextReaderImpl.ParseNumericCharRefInline(Int32 startPos, Boolean expand, BufferBuilder internalSubsetBuilder, Int32&amp; charCount, EntityType&amp; entityType) at System.Xml.XmlTextReaderImpl.ParseText(Int32&amp; startPos, Int32&amp; endPos, Int32&amp; outOrChars) at System.Xml.XmlTextReaderImpl.ParseText() at System.Xml.XmlTextReaderImpl.ParseElementContent() at System.Xml.XmlTextReaderImpl.Read() at System.Xml.XmlTextReader.Read() at System.Web.Services.Protocols.SoapServerProtocol.SoapEnvelopeReader.Read() at System.Xml.XmlReader.ReadElementString() at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReader1.Read14_SendErrlog() at Microsoft.Xml.Serialization.GeneratedAssembly.ArrayOfObjectSerializer12.Deserialize(XmlSerializationReader reader) at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events) --- End of inner exception stack trace --- at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events) at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle) at System.Web.Services.Protocols.SoapServerProtocol.ReadParameters() --- End of inner exception stack trace --- at System.Web.Services.Protocols.SoapServerProtocol.ReadParameters() at System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest() </code></pre> <p>How can I debug this exception? This exception is getting reported to us from a SOAP filter which looks for exceptions in message.Stage = SoapMessageStage.AfterSerialize.</p> <p>Is there any way to get at the original soap request? How do I get an invalid character at line 868, column -3932? How can there a <strong>negative</strong> column 3932?</p> http://stackoverflow.com/questions/917461/vb-net-is-there-a-way-to-reduce-the-lag-of-loading-a-huge-list-of-text-lines-to/917513#917513 1 Answer by Bob King for VB.NET: Is there a way to reduce the lag of loading a huge list of text lines to a listbox? Bob King 2009-05-27T19:12:14Z 2009-05-27T19:12:14Z <p>Use a BackgroundWorker and load the file in a seperate thread. Be careful about adding the lines to the ListBox from the thread. You'll need to post the items from the correct thread.</p> http://stackoverflow.com/questions/885266/wpf-vs-windows-forms/885299#885299 1 Answer by Bob King for WPF vs. Windows Forms Bob King 2009-05-19T22:15:10Z 2009-05-19T22:15:10Z <p><a href="http://stackoverflow.com/questions/504014/wpf-winforms-or-something-else/504053#504053">We went to WPF and never looked back.</a> At this point I recommend doing all new development in WPF because the experience is <em>that much better</em>. But take that with a grain of salt, especially if you have a team with alot of WinForms experience.</p> http://stackoverflow.com/questions/821476/wpf-datatemplate-value-converter-for-hyperlink-in-textblock/821638#821638 2 Answer by Bob King for WPF - DataTemplate/Value Converter for hyperlink in TextBlock Bob King 2009-05-04T19:38:50Z 2009-05-04T19:38:50Z <p>I would do something like this:</p> <pre><code>&lt;TextBlock&gt; &lt;TextBlock.Style&gt; &lt;Style&gt; &lt;Setter Property="Visibility" Value="Visible"/&gt; &lt;Style.Triggers&gt; &lt;DataTrigger Binding="{Binding Email}" Value=""&gt; &lt;Setter Property="Visibility" Value="Collapsed"/&gt; &lt;/DataTrigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; &lt;/TextBlock.Style&gt; &lt;Hyperlink NavigateUri="{Binding Email}"&gt; &lt;TextBlock Text="{Binding Email}" /&gt; &lt;/Hyperlink&gt; &lt;/TextBlock&gt; </code></pre> <p>I think writing a value converter is overkill (no offense intended).</p> http://stackoverflow.com/questions/821564/double-click-a-list-item/821609#821609 6 Answer by Bob King for Double Click a list item Bob King 2009-05-04T19:33:29Z 2009-05-04T19:33:29Z <p>You can add a style to <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.itemscontrol.itemcontainerstyle.aspx" rel="nofollow">ListBox.ItemContainerStyle</a>, and add an <a href="http://msdn.microsoft.com/en-us/library/system.windows.eventsetter.aspx" rel="nofollow">EventSetter</a> there:</p> <pre><code>&lt;ListBox&gt; .... &lt;ListBox.ItemContainerStyle&gt; &lt;Style TargetType="{x:Type ListBoxItem}" BasedOn="{StaticResource {x:Type ListBoxItem}}"&gt; &lt;EventSetter Event="MouseDoubleClick" Handler="ListBoxItem_MouseDoubleClick"/&gt; &lt;/Style&gt; &lt;/ListBox.ItemContainerStyle&gt; &lt;/ListBox&gt; </code></pre> <p>ListBoxItem_MouseDoubleClick is a method in your code behind with the correct signature for <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.control.mousedoubleclick.aspx" rel="nofollow">MouseDoubleClick</a>.</p> http://stackoverflow.com/questions/812503/string-concatenation-in-c-with-interned-strings/812550#812550 2 Answer by Bob King for String concatenation in C# with interned strings Bob King 2009-05-01T18:19:55Z 2009-05-01T19:01:48Z <p>In my experience, I properly allocated StringBuilder outperforms most everything else for large amounts of string data. It's worth wasting some memory, even, by overshooting your estimate by 20% or 30% in order to prevent reallocation. I don't currently have hard numbers to back it up using my own data, but take a look at <a href="http://blog.briandicroce.com/2008/02/04/stringbuilder-vs-string-performance-in-net/" rel="nofollow">this page for more</a>. </p> <p><a href="http://www.codinghorror.com/blog/archives/001218.html" rel="nofollow">However, as Jeff is fond of pointing out, don't prematurely optimize!</a></p> <p>EDIT: As @Colin Burnett pointed out, the tests that Jeff conducted don't agree with Brian's tests, but the point of linking Jeff's post was about premature optimization in general. Several commenters on Jeff's page noted issues with his tests.</p> http://stackoverflow.com/questions/536978/how-can-i-locate-a-specific-type-in-an-assembly-efficiently 2 How can I locate a specific type in an Assembly *efficiently*? Bob King 2009-02-11T14:19:48Z 2009-04-25T09:02:39Z <p>I'm looking for a more efficient way to find a type in an Assembly that derives from a known specific type. Basically, I have a plugin architecture in my application, and for the longest time we've been doing this:</p> <pre><code>For Each t As Type In assem.GetTypes() If t.BaseType Is pluginType Then 'Do Stuff here' End If Next </code></pre> <p>Some of the plugins have a large number of types and we're starting to see this take a few seconds. Is there any way I can just ask for all types that have a BaseType of "pluginType"?</p> <p>EDIT: I over-simplified my code sample. I was using .GetExportedTypes() in my actual code. However, I alot of classes were marked as Public, so it wasn't helping too much. I combed through the projects and marked everything "Friend" except for the actual plugin class, and it still takes nearly the same amount of time to examine the assemblies. I cut maybe 100 ms off of 1.3 seconds (which is less than 10%). Is this just the minimum time I have to deal with? I'd also tried the Assembly Attribute suggestion and it still didn't yield much difference (maybe 100ms again). Is the rest of the time the overhead I have to pay to load assemblies dynamically?</p> http://stackoverflow.com/questions/728373/performing-insert-or-update-upsert-on-sql-server-compact-edition/786621#786621 1 Answer by Bob King for Performing Insert OR Update (upsert) on sql server compact edition Bob King 2009-04-24T16:30:00Z 2009-04-24T16:30:00Z <p>I would recommend using SqlCeResultSet directly. You lose the nice type-safeness of EF, but performance is <em>incredibly</em> fast. We switched from ADO.NET 2.0-style TypeDataSets to SqlCeResultSet and SqlCeDataReader and saw 20 to 50 times increases in speed.</p> http://stackoverflow.com/questions/718332/what-is-the-best-way-to-represent-a-timespan-in-sql/744929#744929 1 Answer by Bob King for What is the best way to represent a timespan in sql? Bob King 2009-04-13T18:39:23Z 2009-04-13T18:39:23Z <p>I'd recommend using a long to represent the number of <a href="http://msdn.microsoft.com/en-us/library/system.timespan.ticks.aspx" rel="nofollow">ticks</a>. That's what <a href="http://msdn.microsoft.com/en-us/library/system.timespan.aspx" rel="nofollow">TimeSpan</a> uses as it's internal representation. This lets you easily reconstitute your object with the <a href="http://msdn.microsoft.com/en-us/library/system.timespan.fromticks.aspx" rel="nofollow">Timespan.FromTicks()</a> method, and output to the database using the <a href="http://msdn.microsoft.com/en-us/library/system.timespan.ticks.aspx" rel="nofollow">Timespan.Ticks property</a>.</p> http://stackoverflow.com/questions/706336/is-the-win32-registry-thread-safe/706362#706362 1 Answer by Bob King for Is the Win32 Registry 'thread safe'? Bob King 2009-04-01T16:32:34Z 2009-04-01T16:32:34Z <p>Take a quick read of this Raymond Chen article. It explains that individual writes and reads against the registry are atomic. However, other locking is up to you as there's now way to hold a key open exclusively.</p> <p><a href="http://blogs.msdn.com/oldnewthing/archive/2009/03/26/9508968.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2009/03/26/9508968.aspx</a></p> http://stackoverflow.com/questions/683760/sqlce-ignoring-query-execution/690518#690518 0 Answer by Bob King for SQLCE - Ignoring query execution Bob King 2009-03-27T16:42:48Z 2009-03-27T16:42:48Z <p>Are you doing the DELETE in a transaction, and forgetting to .Commit() it?</p> http://stackoverflow.com/questions/659666/can-i-replace-vblf-and-chr-with-constants 1 Can I replace vbLf and Chr() with constants? Bob King 2009-03-18T19:04:19Z 2009-03-19T14:45:16Z <p>We're trying to trim the number of assemblies we load during startup, and one of the easiest to cut is the Microsoft.VisualBasic assembly. There are alot of things in it that were easy enough to replace, like Left(), but I'm struggling to find a good way to replace vbLf and Chr(). vbCrLf was easy enough to replace with Environment.NewLine, but we have a few spots where we generate content for a Unix-based system that is expecting line feeds only.</p> http://stackoverflow.com/questions/658258/wpf-datagrid-check-visible-rows/658943#658943 0 Answer by Bob King for WPF Datagrid - Check Visible Rows Bob King 2009-03-18T16:12:21Z 2009-03-18T16:12:21Z <p>It's sort of an overcomplicated way of doing it, but it may work. First, subclass DataGridRowsPresenter and override the <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.virtualizingstackpanel.onviewportoffsetchanged.aspx" rel="nofollow">OnViewportOffsetChanged method</a>. Then, duplicate the standard control template for the datagrid, and replace the DataGridRowsPresenter with your own. I leave the details of hit testing for a row relative to the viewport up to you ;-).</p> <p>What are you trying to accomplish, specifically? Maybe we can come up with a better way, as this may be very brittle and requires a bunch of extra work (i.e. keeping the control template in sync if they update it).</p> http://stackoverflow.com/questions/655326/clean-way-to-reduce-many-timespans-into-fewer-average-timespans/655357#655357 2 Answer by Bob King for Clean way to reduce many TimeSpans into fewer, average TimeSpans? Bob King 2009-03-17T17:54:57Z 2009-03-17T17:54:57Z <p>Take a look at the <a href="http://msdn.microsoft.com/en-us/library/bb386988.aspx" rel="nofollow">.Skip() and .Take()</a> extension methods to partition your queue into sets. You can then use .Average(t => t.Ticks) to get the new TimeSpan that represents the average. Just jam each of those 50 averages into a new Queue and you are good to go.</p> <pre><code>Queue&lt;TimeSpan&gt; allTimeSpans = GetQueueOfTimeSpans(); Queue&lt;TimeSpan&gt; averages = New Queue&lt;TimeSpan&gt;(50); int partitionSize = 10; for (int i = 0; i &lt;50; i++) { var avg = allTimeSpans.Skip(i * partitionSize).Take(partitionSize).Average(t =&gt; t.Ticks) averages.Enqueue(new TimeSpan(avg)); } </code></pre> <p>I'm a VB.NET guy, so there may be some syntax that isn't 100% write in that example. Let me know and I'll fix it!</p> http://stackoverflow.com/questions/654899/how-do-you-use-selected-vertical-blocks-in-visual-studio-2008/654920#654920 0 Answer by Bob King for How do you use selected vertical blocks in Visual Studio 2008? Bob King 2009-03-17T16:09:58Z 2009-03-17T16:09:58Z <p>I think it's pretty much just for copy/cut/delete. If I'm wrong, and it has more functionality, I'd be glad to hear about it.</p> http://stackoverflow.com/questions/1312885/application-exit-vs-application-exitthread-vs-environment-exit/1312903#1312903 Comment by Bob King on Application.Exit() vs Application.ExitThread() vs Environment.Exit() Bob King 2009-08-21T16:56:41Z 2009-08-21T16:56:41Z Or if you need to fail fast after catching an error in a top-level error handler, after you log it if possible, of course. http://stackoverflow.com/questions/1289279/visual-studio-ide-from-the-perspective-of-a-unix-programmer/1289326#1289326 Comment by Bob King on Visual Studio IDE from the perspective of a UNIX programmer Bob King 2009-08-17T17:46:44Z 2009-08-17T17:46:44Z -1 for trolling. This isn't the point of the question. http://stackoverflow.com/questions/1273921/what-should-not-be-under-source-control Comment by Bob King on What should NOT be under source control? Bob King 2009-08-13T19:03:21Z 2009-08-13T19:03:21Z Possible duplicate? <a href="http://stackoverflow.com/questions/85353/best-general-svn-ignore-pattern" rel="nofollow" title="best general svn ignore pattern">stackoverflow.com/questions/85353/&hellip;</a> http://stackoverflow.com/questions/1268855/clickonce-questions Comment by Bob King on ClickOnce Questions Bob King 2009-08-13T14:07:39Z 2009-08-13T14:07:39Z Lenard, see my updated answer. http://stackoverflow.com/questions/1213144/data-paging-in-sql-server-ce-compact-edition Comment by Bob King on Data paging in SQL Server CE (Compact Edition) Bob King 2009-08-08T22:46:21Z 2009-08-08T22:46:21Z Neil, see my comment on my answer. http://stackoverflow.com/questions/1213144/data-paging-in-sql-server-ce-compact-edition/1239572#1239572 Comment by Bob King on Data paging in SQL Server CE (Compact Edition) Bob King 2009-08-08T22:45:24Z 2009-08-08T22:45:24Z @Neil, ResultSet/DataReader need a persistent connection. They're pretty much just an SQL Cursor, for all intents and purposes. What's especially nice is that you can also open the whole table as TableDirect, give it an index, and seek on that index and it's <i>so</i> fast. http://stackoverflow.com/questions/1223660/is-c-code-faster-than-visual-basic-net-code/1223662#1223662 Comment by Bob King on Is C# code faster than Visual Basic.NET code? Bob King 2009-08-03T19:02:28Z 2009-08-03T19:02:28Z @Rui - I thought that those were all wrappers around .SubString, .Contains, etc. anymore anyway. http://stackoverflow.com/questions/1223660/is-c-code-faster-than-visual-basic-net-code/1223662#1223662 Comment by Bob King on Is C# code faster than Visual Basic.NET code? Bob King 2009-08-03T17:54:01Z 2009-08-03T17:54:01Z Of course, any developer worth their salt would have Option Strict On. http://stackoverflow.com/questions/1168203/incorporating-the-windows-7-onscreen-keyboard-into-a-wpf-app/1202108#1202108 Comment by Bob King on Incorporating the Windows 7 onscreen keyboard into a WPF app Bob King 2009-08-02T23:51:53Z 2009-08-02T23:51:53Z Correct, afaik. http://stackoverflow.com/questions/1196492/should-you-code-in-case-the-threads-die-or-freeze Comment by Bob King on Should you code in case the threads die or freeze? Bob King 2009-07-28T22:02:02Z 2009-07-28T22:02:02Z @JD, I think what @Eric Lippert was trying to say, was that what happens if your thread that is monitoring the other threads dies, i.e. &quot;Who watches the Watchmen?&quot;. You end up in a Catch-22 because you can't trust any thread if you don't trust them all. http://stackoverflow.com/questions/202491/automatically-increment-minimum-required-version-in-a-clickonce-deployment/1196984#1196984 Comment by Bob King on Automatically increment "minimum required version" in a ClickOnce deployment? Bob King 2009-07-28T22:00:15Z 2009-07-28T22:00:15Z Can you publish using the buttons on the &quot;Publish&quot; tab in a VSTO project? http://stackoverflow.com/questions/1196492/should-you-code-in-case-the-threads-die-or-freeze/1196509#1196509 Comment by Bob King on Should you code in case the threads die or freeze? Bob King 2009-07-28T20:44:59Z 2009-07-28T20:44:59Z I agree with Thorarin. See my answer. http://stackoverflow.com/questions/1156197/how-often-should-you-compact-an-sql-ce-database/1156277#1156277 Comment by Bob King on How often should you compact an SQL CE database? Bob King 2009-07-22T13:12:42Z 2009-07-22T13:12:42Z I think that what I want is someone to explicitly say &quot;No, you don't need to ever compact as routine maintenance, only if the database is corrupt.&quot; or &quot;Yes, you should compact every 90 days.&quot; or &quot;Yes, you should compact is &lt;&lt;magical API&gt;&gt; says there are more than 30% of free pages or size is greater than n Mb.&quot; or something like that. The documentation is vague on what types of routine maintenance needs to be done on a CE database, if any. http://stackoverflow.com/questions/1144480/what-is-the-most-under-valued-part-of-net/1144488#1144488 Comment by Bob King on What is the most under-valued part of .NET? Bob King 2009-07-17T17:17:10Z 2009-07-17T17:17:10Z MVC is just out-of-band right now. It'll be fully integrated into .NET 4.0 http://stackoverflow.com/questions/85353/best-general-svn-ignore-pattern/85377#85377 Comment by Bob King on Best general SVN Ignore Pattern? Bob King 2009-07-17T17:15:44Z 2009-07-17T17:15:44Z Also, if you do WPF *.g.vb *.g.cs *.baml *.GenerateResource.Cache *.cache