User Bob King - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T18:05:39Zhttp://stackoverflow.com/feeds/user/6897http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/133125/any-other-ides-for-lotus-notes-other-than-domino-designer2Any other IDEs for Lotus Notes other than Domino Designer?Bob King2008-09-25T12:50:25Z2009-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#12688941Answer by Bob King for ClickOnce QuestionsBob King2009-08-12T21:40:21Z2009-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, <Out()> ByVal lpszPath As StringBuilder, ByVal nFolder As Integer, ByVal fCreate As Boolean) As Boolean
Private Const CSIDL_COMMON_DOCUMENTS As Integer = &H2E
<snip>
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#12395721Answer by Bob King for Data paging in SQL Server CE (Compact Edition)Bob King2009-08-06T15:12:14Z2009-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#12240230Answer by Bob King for How to String.Format the day of the month in c#?Bob King2009-08-03T18:56:55Z2009-08-03T18:56:55Z<p>DateTime.Now.Day.ToString()</p>
http://stackoverflow.com/questions/1202422/lucene-query-syntax/1202513#1202513-1Answer by Bob King for Lucene Query SyntaxBob King2009-07-29T19:31:20Z2009-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#12021311Answer by Bob King for Major differences between Visual Studio Pro 2005 and 2008?Bob King2009-07-29T18:25:01Z2009-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#12021082Answer by Bob King for Incorporating the Windows 7 onscreen keyboard into a WPF appBob King2009-07-29T18:20:40Z2009-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-deployment2Automatically increment "minimum required version" in a ClickOnce deployment?Bob King2008-10-14T19:25:02Z2009-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#11966381Answer by Bob King for Should you code in case the threads die or freeze?Bob King2009-07-28T20:47:13Z2009-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-database0How often should you compact an SQL CE database?Bob King2009-07-20T22:00:14Z2009-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#11316681Answer by Bob King for Adding rowguid column broke this Stored Procedure?Bob King2009-07-15T14:14:38Z2009-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#11316323Answer by Bob King for Is there a way to install the .NET 3.5 Framework without rebooting?Bob King2009-07-15T14:08:28Z2009-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#10143511Answer by Bob King for Valid filename check. What is the best way?Bob King2009-06-18T18:20:23Z2009-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#10127651Answer by Bob King for WPF: Read only say TextBox and binding.Bob King2009-06-18T13:56:22Z2009-06-18T13:56:22Z<p>I would use a <TextBlock/> or a <Label/> to display static data instead of a <TextBox/>.</p>
http://stackoverflow.com/questions/980947/convert-c-to-vb-net-using-mvccontrib-blockrenderer-to-render-a-partial-view-to/981118#9811182Answer by Bob King for Convert C# to VB.Net - Using MVCContrib Blockrenderer to render a partial view to a stringBob King2009-06-11T13:36:24Z2009-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(
() => 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-requests0How do I debug mangled soap requests?Bob King2009-06-05T15:13:48Z2009-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. ---> System.InvalidOperationException: There is an error in XML document (868, -3932). ---> 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& charCount, EntityType& entityType)
at System.Xml.XmlTextReaderImpl.ParseText(Int32& startPos, Int32& endPos, Int32& 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#9175131Answer 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 King2009-05-27T19:12:14Z2009-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#8852991Answer by Bob King for WPF vs. Windows FormsBob King2009-05-19T22:15:10Z2009-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#8216382Answer by Bob King for WPF - DataTemplate/Value Converter for hyperlink in TextBlockBob King2009-05-04T19:38:50Z2009-05-04T19:38:50Z<p>I would do something like this:</p>
<pre><code><TextBlock>
<TextBlock.Style>
<Style>
<Setter Property="Visibility" Value="Visible"/>
<Style.Triggers>
<DataTrigger Binding="{Binding Email}" Value="">
<Setter Property="Visibility" Value="Collapsed"/>
</DataTrigger>
</Style.Triggers>
</Style>
</TextBlock.Style>
<Hyperlink NavigateUri="{Binding Email}">
<TextBlock Text="{Binding Email}" />
</Hyperlink>
</TextBlock>
</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#8216096Answer by Bob King for Double Click a list itemBob King2009-05-04T19:33:29Z2009-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><ListBox>
....
<ListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}" BasedOn="{StaticResource {x:Type ListBoxItem}}">
<EventSetter Event="MouseDoubleClick" Handler="ListBoxItem_MouseDoubleClick"/>
</Style>
</ListBox.ItemContainerStyle>
</ListBox>
</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#8125502Answer by Bob King for String concatenation in C# with interned stringsBob King2009-05-01T18:19:55Z2009-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-efficiently2How can I locate a specific type in an Assembly *efficiently*?Bob King2009-02-11T14:19:48Z2009-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#7866211Answer by Bob King for Performing Insert OR Update (upsert) on sql server compact editionBob King2009-04-24T16:30:00Z2009-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#7449291Answer by Bob King for What is the best way to represent a timespan in sql?Bob King2009-04-13T18:39:23Z2009-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#7063621Answer by Bob King for Is the Win32 Registry 'thread safe'?Bob King2009-04-01T16:32:34Z2009-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#6905180Answer by Bob King for SQLCE - Ignoring query executionBob King2009-03-27T16:42:48Z2009-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-constants1Can I replace vbLf and Chr() with constants?Bob King2009-03-18T19:04:19Z2009-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#6589430Answer by Bob King for WPF Datagrid - Check Visible RowsBob King2009-03-18T16:12:21Z2009-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#6553572Answer by Bob King for Clean way to reduce many TimeSpans into fewer, average TimeSpans?Bob King2009-03-17T17:54:57Z2009-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<TimeSpan> allTimeSpans = GetQueueOfTimeSpans();
Queue<TimeSpan> averages = New Queue<TimeSpan>(50);
int partitionSize = 10;
for (int i = 0; i <50; i++) {
var avg = allTimeSpans.Skip(i * partitionSize).Take(partitionSize).Average(t => 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#6549200Answer by Bob King for How do you use selected vertical blocks in Visual Studio 2008?Bob King2009-03-17T16:09:58Z2009-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#1312903Comment by Bob King on Application.Exit() vs Application.ExitThread() vs Environment.Exit()Bob King2009-08-21T16:56:41Z2009-08-21T16:56:41ZOr 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#1289326Comment by Bob King on Visual Studio IDE from the perspective of a UNIX programmerBob King2009-08-17T17:46:44Z2009-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-controlComment by Bob King on What should NOT be under source control?Bob King2009-08-13T19:03:21Z2009-08-13T19:03:21ZPossible 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/…</a>http://stackoverflow.com/questions/1268855/clickonce-questionsComment by Bob King on ClickOnce QuestionsBob King2009-08-13T14:07:39Z2009-08-13T14:07:39ZLenard, see my updated answer.http://stackoverflow.com/questions/1213144/data-paging-in-sql-server-ce-compact-editionComment by Bob King on Data paging in SQL Server CE (Compact Edition)Bob King2009-08-08T22:46:21Z2009-08-08T22:46:21ZNeil, see my comment on my answer.http://stackoverflow.com/questions/1213144/data-paging-in-sql-server-ce-compact-edition/1239572#1239572Comment by Bob King on Data paging in SQL Server CE (Compact Edition)Bob King2009-08-08T22:45:24Z2009-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#1223662Comment by Bob King on Is C# code faster than Visual Basic.NET code?Bob King2009-08-03T19:02:28Z2009-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#1223662Comment by Bob King on Is C# code faster than Visual Basic.NET code?Bob King2009-08-03T17:54:01Z2009-08-03T17:54:01ZOf 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#1202108Comment by Bob King on Incorporating the Windows 7 onscreen keyboard into a WPF appBob King2009-08-02T23:51:53Z2009-08-02T23:51:53ZCorrect, afaik.http://stackoverflow.com/questions/1196492/should-you-code-in-case-the-threads-die-or-freezeComment by Bob King on Should you code in case the threads die or freeze?Bob King2009-07-28T22:02:02Z2009-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. "Who watches the Watchmen?". 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#1196984Comment by Bob King on Automatically increment "minimum required version" in a ClickOnce deployment?Bob King2009-07-28T22:00:15Z2009-07-28T22:00:15ZCan you publish using the buttons on the "Publish" tab in a VSTO project?http://stackoverflow.com/questions/1196492/should-you-code-in-case-the-threads-die-or-freeze/1196509#1196509Comment by Bob King on Should you code in case the threads die or freeze?Bob King2009-07-28T20:44:59Z2009-07-28T20:44:59ZI agree with Thorarin. See my answer.http://stackoverflow.com/questions/1156197/how-often-should-you-compact-an-sql-ce-database/1156277#1156277Comment by Bob King on How often should you compact an SQL CE database?Bob King2009-07-22T13:12:42Z2009-07-22T13:12:42ZI think that what I want is someone to explicitly say "No, you don't need to ever compact as routine maintenance, only if the database is corrupt." or "Yes, you should compact every 90 days." or "Yes, you should compact is <<magical API>> says there are more than 30% of free pages or size is greater than n Mb." 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#1144488Comment by Bob King on What is the most under-valued part of .NET?Bob King2009-07-17T17:17:10Z2009-07-17T17:17:10ZMVC is just out-of-band right now. It'll be fully integrated into .NET 4.0http://stackoverflow.com/questions/85353/best-general-svn-ignore-pattern/85377#85377Comment by Bob King on Best general SVN Ignore Pattern?Bob King2009-07-17T17:15:44Z2009-07-17T17:15:44ZAlso, if you do WPF *.g.vb *.g.cs *.baml *.GenerateResource.Cache *.cache