Judah Himango

6,842
Reputation
600 views

Registered User

Name Judah Himango
Member for 1 year
Seen yesterday
Website
Location Savage, Minnesota, US
Age 26
I'm .NET developer by day, game developer for fun at night. I've got a family of 4: wife Kristin, 9 year old son Connor, 0 year old daughter Kess. I'm a competitive sports guy. I'm an unashamed believer that Yeshua (Jesus) is the Jewish Messiah, and write to that end on my personal blog.
10h
awarded  Necromancer
14h
awarded  Nice Answer
Nov
28
revised When should one use actors to solve a concurrency problem?
added 4 characters in body
Nov
28
comment How can I write an Exif header without recompressing the JPEG, in .NET?
Closing as exact duplicate of stackoverflow.com/questions/1038206/…
Nov
28
revised Information mining, classification, modification
fixed broken English
Nov
28
revised Visual Studio: Creating Folders With Specified Name
fixed tags
Nov
28
answered Should I put custom code inside Microsoft’s BCL/FCL namespaces?
Nov
28
revised Read Firefox bookmarks using C#
added 24 characters in body; added 8 characters in body
Nov
27
answered .Net existence: chicken and eggs?
Nov
27
awarded  Good Answer
Nov
25
comment Can’t instantiate COM component in C# - error 80070002
If I recall right, I searched the registry for the ID, then looked up the object in OleView. From there, I started to realize it was pointing to a preview handler for an old Windows Media Player format we had been using. Deleting that component from the registry fixed the issue.
Nov
24
comment Can’t instantiate COM component in C# - error 80070002
The problem turned out to be something really specific to our company. Basically, our software had installed a Windows Media preview handler that later was uninstalled, but left some registry keys in place. This preview handler was gone - hence File Not Found error - but some registry keys were left, causing this issue.
Nov
20
awarded  Nice Answer
Nov
20
accepted is there a difference between [Serializable] and [Serializable()] in c#?
Nov
20
answered is there a difference between [Serializable] and [Serializable()] in c#?
Nov
18
accepted Why is there no Sort for IList<T>?!?! (edited)
Nov
18
comment Unhandled exceptions in BackgroundWorker
@Ibrar, are you always checking for e.Error inside your RunWorkerCompleted event handler? Make sure you check that before you do anything. All catchable exceptions will be reported there.
Nov
17
comment How to make entire window aero glass in Java?
It should be noted that SWT has some internal APIs for calling DwmExtendFrameIntoClientArea. That might be a starting point for figuring this out.
Nov
16
revised How to make entire window aero glass in Java?
added 108 characters in body
Nov
16
revised How to make entire window aero glass in Java?
added 70 characters in body; added 2 characters in body
Nov
16
answered How to make entire window aero glass in Java?
Nov
15
comment What’s wrong with this program?
This sounds suspiciously like a homework question. If it is homework, we can help you, but you should be the one to actually solve it.
Nov
13
answered Why does .NET read values of unaffected properties on reception of INotifyPropertyChanged.PropertyChanged event?
Nov
12
answered Is Visual Studio 2010 Beta 2 usable?
Nov
12
revised Generic method syntax clarification
deleted 1 characters in body; edited title
Nov
11
answered Winform Textbox CanGrow ?
Nov
9
answered Error Provider in WPF
Nov
7
answered Cannot use pinvoke to send WM_CLOSE to a Windows Explorer window
Nov
7
comment Db4o query: find all objects with ID = {anything in array}
Id property is indexed, yeah. I'll try turning on diagnostics. Thanks for the help.
Nov
6
asked Db4o query: find all objects with ID = {anything in array}
Nov
5
revised LINQ to Entities / SQL - Way of seeing what is attached to object context?
clarified tags, title, post
Nov
4
comment How to read a singly linked list backwards?
Reverse is lazily-loaded, executed when the items are requested. It's not the same as the OP.
Nov
2
comment WPF OpenFileDialog with the MVVM pattern?
I've voted to close this question, as it is an exact duplicate.
Nov
2
comment WPF OpenFileDialog with the MVVM pattern?
Sure is. :-) I did some searches on SO before posting this question, it didn't come up. Oh well.
Nov
1
awarded  Nice Answer
Oct
31
revised Strategy for syncing data with mobile phones?
deleted 21 characters in body
Oct
30
revised Syncing Exchange Inbox subfolders to Blackberry
deleted 22 characters in body; deleted 56 characters in body
Oct
30
asked Strategy for syncing data with mobile phones?
Oct
30
accepted Is there a free alternative to Exception hunter?
Oct
30
comment Unit Testing a Windows Scheduled Task Console App
Cool. Since this led you in the right direction, are you going to mark this as the answer? (Or at least give me an upvote?) Appreciate it!
Oct
29
revised Unit Testing a Windows Scheduled Task Console App
added 75 characters in body
Oct
29
answered Unit Testing a Windows Scheduled Task Console App
Oct
27
comment Automatically select all text on focus in WinForms TextBox
Yeah, see the other answers (and comments) for why this doesn't work in all scenarios.
Oct
26
comment WPF OpenFileDialog with the MVVM pattern?
This makes sense to me: have some service that does dialogs like this and use that service via an interface in the ViewModel. Excellent, thank you. (p.s. I'll be testing with RhinoMocks, FYI, but I can figure that part out no problem.)
Oct
26
revised Bison build warning: “-s option given but default rule can be matched”
clarified title
Oct
26
revised WMD editor - how to create hyperlink on an image?
cleaned up summar and body a bit
Oct
26
answered Windows Media Player Device Sync in VB.NET using WMPLIB
Oct
26
revised WPF OpenFileDialog with the MVVM pattern?
added 95 characters in body
Oct
26
revised WPF OpenFileDialog with the MVVM pattern?
added 26 characters in body
Oct
26
comment WPF OpenFileDialog with the MVVM pattern?
I should rephrase: how can I make this unit-testable? Your solution would pop up a dialog when running the unit tests.