Timothy Khouri

4,549
reputation
254 views

Registered User

name Timothy Khouri
member for 1 year
seen yesterday
website
location US
age 24
I've loved programming since I was a kid (script kiddie really). After developing for several years, I've realized that being a lone-wolf is worthless... so I try to spend a lot of time in the community. I run SingingEels.com, and contribute to various forums and blogs. My goal with Eels' articles is to simply teach real-world solutions for real-world problems (usually ones that I had to solve for myself first).
Dec
14
comment WPF: How to prevent a control from stealing a key gesture?
To be honest, I'm not very good with InputGestures myself (used them maybe once and I'm not that strong). My point was just that you can do it with the PreviewKeyDown. I do know that you can absolutely come up with your own commands and use the gestures... I've done it, but only in a demo and a long time ago. - Maybe someone smarter than me will comment soon :)
Dec
14
accepted C# Fire and Forget call inside a WebMethod
Dec
14
answered WPF: How to prevent a control from stealing a key gesture?
Dec
14
comment Linq to SQL order by aggregate
Wow... some of these answers are highly over complicated. You can do this in one line by chaining a couple of simple methods if you want.
Dec
14
answered Linq to SQL order by aggregate
Dec
14
comment C# Fire and Forget call inside a WebMethod
By the way... in your example as it is now, you are NEVER calling the ProcessNewBusiness method in the "InDisasterMode" case. (try to find that method name between lines 5 to 11).
Dec
14
comment C# Fire and Forget call inside a WebMethod
You don't really need to build your own "AsyncHelper" class... just use ThreadPool.QueueUserWorkItem
Dec
14
answered C# Fire and Forget call inside a WebMethod
Nov
17
awarded  Nice Answer
Nov
16
answered How do I GET/Download/Retreive email using C# (.net)
Nov
16
asked How do I GET/Download/Retreive email using C# (.net)
Nov
15
awarded  Popular Question
Oct
26
answered try finally mystery
Oct
23
awarded  Popular Question
Oct
19
comment In WPF, how do I prevent my style from being overriden?
@Akash - Your reasoning sounds good, but the bottom line comes down to this. Do I have to tell all 15 developers on my development team to make sure to add "ooh, please don't forget to inhert!" to every control that they add functional styling to? - That's horrible and is more work than it's worth.
Oct
19
comment In WPF, how do I prevent my style from being overriden?
@Guy - I'd like it if it was cascading... but it's not. Trying to add more styles 100% OVERRIDES THE PREVIOUS STYLES. So, to recap, they don't cascade (aka append), they override (aka replace).
Oct
19
comment In WPF, how do I prevent my style from being overriden?
True, but is basically like saying "you have to re-add styles to everything you want to override". :( - Good answer, but I hate that solution.
Oct
19
asked In WPF, how do I prevent my style from being overriden?
Oct
13
awarded  Popular Question
Oct
2
awarded  Popular Question
Sep
28
answered ClickOnce: How do I pass a querystring value to my app *through the installer*?
Sep
28
comment ClickOnce: How do I pass a querystring value to my app *through the installer*?
It's true that the URL will be sent to the application, but not to the installer.
Sep
27
awarded  Notable Question
Sep
21
comment anchors and regular links - styling
I would like to go on record as to eating my words :)
Sep
21
accepted anchors and regular links - styling
Sep
21
comment anchors and regular links - styling
I think you missed the point 100%... he wants anchors in the page so as to allow navigation... how would taking out the "a" tag help?
Sep
21
comment anchors and regular links - styling
Thanks for the clarification... it's what I figured. See my response below (and don't add arbitrary classes when you don't need to :P)
Sep
21
answered anchors and regular links - styling
Sep
21
comment anchors and regular links - styling
Using [href] instead of re-classing your anchors is good (and clear to me), but I just want to know what you want as an end result for colors and style... then we can write the any-browser, best CSS for the job.
Sep
21
comment anchors and regular links - styling
What exactly do you want? - If you could sum up your color / effect needs in one or two sentences, that would help. example: "Ultimately, I want all anchors red, but if they don't have a href I want them purple" - or whatever :)
Sep
18
awarded  Popular Question
Sep
18
accepted MVC ASP.NET Best way to get 52 textbox key/values from View to Controller
Sep
17
awarded  Yearling
Sep
16
answered Adding Meta Tag Programatically in c#
Sep
14
awarded  Tumbleweed
Sep
11
comment WPF Multiline TextBox for large content
Try a stack panel itself instead of the list box
Sep
11
answered Tricky SQL statement over 3 tables
Sep
11
accepted How do I save an Excel 2007 file in “OOXML” (xml text) so that I can modify it in code?
Sep
11
accepted In WCF - In the “Faulted” Event - How Do I Get The Exception Details?
Sep
11
accepted How do I make a ‘ReadOnly’ property in LINQ to SQL?
Sep
7
asked ClickOnce: How do I pass a querystring value to my app *through the installer*?
Aug
28
accepted How to evaluate the pros and cons when changing language
Aug
24
accepted How do I extend ADO.NET Entity Framework objects with partial classes?
Aug
19
comment Is there a benefit to using the HtmlHelper in MVC?
Good correction of my terminology... +1 :)
Aug
7
awarded  Enlightened
Aug
7
awarded  Nice Answer
Aug
4
comment Subqueries in linq
Why are you "JOINING" to that subQ... you're not pulling a single value out of there. That should be a WHERE clause as all you are doing is using it to filter. That's probably why you're having a hard time translating it.
Jul
29
comment When not to use pop ups?
And this would be a confirm dialog, not really a pop-up.
Jul
29
comment Wrapping text with css
you don't need display: block (float left forces that).
Jul
29
awarded  Notable Question