Bob King

5,084
Reputation
364 views

Registered User

Name Bob King
Member for 1 year
Seen 2 days ago
Website
Location Wilkes-Barre, PA
Age 27
Software Developer
Nov
30
comment How can I add a Path, that has been defined in the XAML ResourceDictionary, multiple times to a WPF form at runtime?
Storing the Path.Data as a StreamGeometry in a Resource is brilliant!
Nov
24
awarded  Popular Question
Nov
22
awarded  Enlightened
Nov
22
awarded  Nice Answer
Oct
22
accepted Unit test WPF Bindings
Sep
21
awarded  Enlightened
Sep
21
awarded  Nice Answer
Sep
16
awarded  Yearling
Aug
21
comment Application.Exit() vs Application.ExitThread() vs Environment.Exit()
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.
Aug
17
comment Visual Studio IDE from the perspective of a UNIX programmer
-1 for trolling. This isn't the point of the question.
Aug
13
comment What should NOT be under source control?
Possible duplicate? stackoverflow.com/questions/85353/…
Aug
13
comment ClickOnce Questions
Lenard, see my updated answer.
Aug
13
revised ClickOnce Questions
added 1204 characters in body
Aug
12
answered ClickOnce Questions
Aug
8
comment Data paging in SQL Server CE (Compact Edition)
Neil, see my comment on my answer.
Aug
8
comment Data paging in SQL Server CE (Compact Edition)
@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 so fast.
Aug
7
accepted Data paging in SQL Server CE (Compact Edition)
Aug
6
answered Data paging in SQL Server CE (Compact Edition)
Aug
3
comment Is C# code faster than Visual Basic.NET code?
@Rui - I thought that those were all wrappers around .SubString, .Contains, etc. anymore anyway.
Aug
3
answered How to String.Format the day of the month in c#?
Aug
3
comment Is C# code faster than Visual Basic.NET code?
Of course, any developer worth their salt would have Option Strict On.
Aug
2
comment Incorporating the Windows 7 onscreen keyboard into a WPF app
Correct, afaik.
Jul
29
answered Lucene Query Syntax
Jul
29
answered Major differences between Visual Studio Pro 2005 and 2008?
Jul
29
answered Incorporating the Windows 7 onscreen keyboard into a WPF app
Jul
28
comment Should you code in case the threads die or freeze?
@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.
Jul
28
comment Automatically increment “minimum required version” in a ClickOnce deployment?
Can you publish using the buttons on the "Publish" tab in a VSTO project?
Jul
28
answered Should you code in case the threads die or freeze?
Jul
28
comment Should you code in case the threads die or freeze?
I agree with Thorarin. See my answer.
Jul
22
comment How often should you compact an SQL CE database?
I 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.
Jul
20
asked How often should you compact an SQL CE database?
Jul
18
accepted Valid filename check. What is the best way?
Jul
17
comment What is the most under-valued part of .NET?
MVC is just out-of-band right now. It'll be fully integrated into .NET 4.0
Jul
17
comment Best general SVN Ignore Pattern?
Also, if you do WPF *.g.vb *.g.cs *.baml *.GenerateResource.Cache *.cache
Jul
17
comment Best general SVN Ignore Pattern?
What about *.tmp *.temp?
Jul
15
accepted Is there a way to install the .NET 3.5 Framework without rebooting?
Jul
15
comment Adding rowguid column broke this Stored Procedure?
Crazy errors like the ones you are getting are just par for the course in Stored Procedures.
Jul
15
comment Adding rowguid column broke this Stored Procedure?
Honestly, both. I agree 100% with Jeff that Stored Procedures are no longer the right answer. If you already have a business tier, just keep all of the logic there. Your life will be better for it. On the other hand, I realize that my comment seems snarky and unhelpful, and I do apologize for soap-boxing in your question.
Jul
15
answered Adding rowguid column broke this Stored Procedure?
Jul
15
comment Is it possible to suppress the Web Forms Designer in Visual Studio from being opened?
Fixed "File" to "Tools".
Jul
15
revised Is it possible to suppress the Web Forms Designer in Visual Studio from being opened?
Fixed errant "File" instead of Tools.
Jul
15
answered Is there a way to install the .NET 3.5 Framework without rebooting?
Jun
22
comment Valid filename check. What is the best way?
Is this OS independent? I'd be cautious just if the app ever gets run under Mono.
Jun
19
comment Valid filename check. What is the best way?
Using exceptions to handle control flow is bad practice!
Jun
18
answered Valid filename check. What is the best way?
Jun
18
answered WPF: Read only say TextBox and binding.
Jun
14
accepted Convert C# to VB.Net - Using MVCContrib Blockrenderer to render a partial view to a string
Jun
12
awarded  Nice Answer
Jun
11
comment Convert C# to VB.Net - Using MVCContrib Blockrenderer to render a partial view to a string
try the updated sample!
Jun
11
revised Convert C# to VB.Net - Using MVCContrib Blockrenderer to render a partial view to a string
Updated with new delegate wrapper