Matt Hamilton

26,405
reputation
1658 views

Registered User

name Matt Hamilton
member for 1 year
seen 25 mins ago
website
location Albury, NSW, Australia
age 36

Follow me on Twitter!

Check out my hobby project, Comicster! It's a free WinForms application to manage your comic-book collection.

Feel free to contact me directly (mabster -at- madprops.org).

This paragraph is part of my attempt to make my site the number one Google search result for Matt Hamilton!

17h
awarded  Notable Question
23h
comment Transactions carrying over after an ExecuteNonQuery?
Any reason you can't use connection.BeginTransaction() and Commit() on the resulting IDbTransaction? Or is this an academic sort of question?
Dec
14
comment Why can’t I select a null value in a ComboBox?
Brilliant! That makes sense. Thanks Tim.
Dec
14
accepted Get object by its Uid in WPF
Dec
14
revised Get object by its Uid in WPF
oops - let's provide some code that actually compiles
Dec
14
answered Get object by its Uid in WPF
Dec
14
answered Unity to return new instance of service
Dec
12
awarded  Great Answer
Dec
11
comment How to attache checked event to check box in DataTemplate in wpf
It doesn't matter where the DataTemplate lives. If you have CheckBox.Checked="..." on a parent control your event handler will get called when the CheckBox is checked. Put it on the Window itself if you have to.
Dec
11
answered How to attache checked event to check box in DataTemplate in wpf
Dec
11
revised How to attache checked event to check box in DataTemplate in wpf
code formatting
Dec
9
answered SortDescriptions
Dec
8
awarded  Nice Answer
Dec
7
revised Most wanted feature for C# 4.0 ?
Added some example code
Dec
7
answered Setting content in an inherited (BasedOn) style.
Dec
6
awarded  Mortarboard
Dec
5
accepted How to get unique entries of products in a List<Order> with LINQ
Dec
5
answered How to get unique entries of products in a List<Order> with LINQ
Dec
4
accepted Approach question regarding Generics in C#
Dec
4
accepted Need a deterministic algorithm to generate a resource domain prefix for a given path in an evenly distributed fashion
Dec
4
answered Need a deterministic algorithm to generate a resource domain prefix for a given path in an evenly distributed fashion
Dec
3
comment Why does NULL = NULL evaluate to false in SQL server
I don't have a sister, and nor does my friend. If "NULL = NULL" then we have a common sister, and are therefore related! :)
Dec
3
answered Approach question regarding Generics in C#
Dec
3
revised What is the blue double arrow that appears over links?
Fixed link
Dec
1
accepted Using ItemTemplate for a TreeView when adding items in code
Nov
27
comment Trim all whitespace in an array
Can you clarify what you mean by "trim"? Do you want to remove whitespace from inside the string, or just from both ends? Do you want to trim successive whitespace characters back to one, or remove them altogether?
Nov
24
accepted C# - what’s the major problem solved by “partial” classes?
Nov
23
awarded  Enlightened
Nov
23
awarded  Nice Answer
Nov
19
comment C#: Bind TextBox to SelectedValue
Also: Silverlight, WinForms or WPF?
Nov
18
comment WPF Command Line
Certainly you can call Console.WriteLine, but the output won't appear on the console from which you launched the app. I'm not sure what "Console" is in the context of a WPF application.
Nov
17
comment Most wanted feature for C# 4.0 ?
@Kyralessa Extension properties would almost have to be read only. Setters would be very complicated to implement.
Nov
16
accepted How to disable ScrollViewer in ListBox?
Nov
16
comment .NET Deployment Options with Patch management / Automatic updates
Anything in particular about ClickOnce that you don't like?
Nov
16
comment Icons on Titlebar
More info about custom window chrome in WinForms here: stackoverflow.com/questions/42460/…
Nov
16
answered wpf center child window not working with sizetocontent
Nov
15
answered How to disable ScrollViewer in ListBox?
Nov
13
accepted Icon in my Menu shows up way too big. How can I have it fit in the little square?
Nov
13
answered Icon in my Menu shows up way too big. How can I have it fit in the little square?
Nov
12
comment Using LINQ to find a common prefix?
+1 yeah Zip would do the trick nicely.
Nov
12
answered Using LINQ to find a common prefix?
Nov
11
comment Most wanted feature for C# 4.0 ?
@Min to be fair, I'm actually stealing from an older language which I call "English" ;-)
Nov
11
comment How do I specify “close existing connections” in sql script
Weird. Which Management Studio version? I'm on 2008 x64.
Nov
10
accepted Click Once Migrate URL
Nov
10
comment How do I specify “close existing connections” in sql script
I was going to try to answer this question by doing exactly what you describe (scripting the "delete database" dialog) but it doesn't add the ALTER DATABASE line to the script if you check the "close existing connections" checkbox.
Nov
10
comment Click Once Migrate URL
You're right - it looks like the question is a duplicate. I'll vote to close it.
Nov
10
answered Click Once Migrate URL
Nov
10
awarded  Enlightened
Nov
10
awarded  Nice Answer
Nov
10
comment Bound value for IValueConverter resets to default
Ooh +1 that makes sense.