HBoss

4,622
Reputation
495 views

Registered User

Name HBoss
Member for 1 year
Seen 2 days ago
Website
Location Abilene, Texas
Age 29
Just another developer trying to feed his wife and kids...
16m
awarded  Mortarboard
2d
awarded  Nice Question
Nov
30
comment Search a JavaScript object
@Nosredna - Thank you, I'll check into it!
Nov
30
answered Search a JavaScript object
Nov
26
awarded  Nice Question
Nov
9
awarded  Notable Question
Oct
20
comment Alternatives to Using BuildProviders with Web Applications
Actually, I have -- was pretty interesting but didn't devote a whole lot of time to figuring it out. The MVC team actually ended up doing what I was trying to do in MVC2 so I didn't really work on it anymore :)
Oct
9
awarded  Popular Question
Sep
27
awarded  Taxonomist
Sep
24
awarded  Popular Question
Sep
23
awarded  Self-Learner
Sep
19
awarded  Yearling
Sep
18
comment jQuery: Most impressive thing you do in a single chained command?
Thanks for digging this back up - I see people doing all sorts of "Code Golf" on this website, I thought this would be a fun post to see what people came up with. I honestly had no idea people would actually ASSUME this is how a person would really program - but apparently not. Just as a heads up, if you see a "Code Golf" post, they are just having fun and showing off ;)
Aug
26
comment How to trap the keyboard strokes on a c# win forms application (CTRl + alt +Del)
That's just one of many key combinations... CTRL+Shift+Esc pulls up the Task manager and they can start a new program from there.
Aug
26
answered Need help with Regex to extract zip code from string
Aug
25
comment Using LDAP (AD) for MySQL authenication
Are you looking for a strictly MySQL solution or can you approach this problem from the application side (as in program your way out of the problem)
Aug
25
answered How to create a moving clouds using jQuery?
Aug
24
answered Inserting a character inside the body of a paragraph.
Aug
24
answered Find first element of certain type in a list using LINQ
Aug
23
comment Hidden Features of C#?
@devstuff - that is a good point, I didn't really ever think about it from that perspective.
Aug
22
awarded  Popular Question
Aug
21
awarded  Nice Answer
Aug
7
comment How to insert javascript in asp.net master pages
Bah! I stand corrected!! -- I knew it worked for tags inside the head tag (like for stylesheets) -- Didn't realize it didn't work for scripts!
Aug
7
comment How to insert javascript in asp.net master pages
Not sure what the down vote was for since what I said is true... -- Hmmm...
Aug
7
answered How to insert javascript in asp.net master pages
Jul
31
asked Code Protection With Loaded Assemblies (.NET)
Jul
31
answered Postpone Postback For 3 Seconds?
Jul
28
comment Most common C# bitwise operations
Thanks man - appreciate it!
Jul
27
accepted Comparing enum flags in C#
Jul
22
answered any famous book on designing website user interface to recommend ?
Jul
22
comment any famous book on designing website user interface to recommend ?
Beat me to it -- Absolutely excellent book.
Jul
22
accepted How to fadeOut a div after a document has loaded?
Jul
22
answered How to fadeOut a div after a document has loaded?
Jul
21
comment Silverlight - Support For Dynamic Code?
Yes, you state it so much clearer than I did :) - Generate an assembly on the server side and then dynamically add it into a running Silverlight application.
Jul
21
revised Silverlight - Support For Dynamic Code?
added 292 characters in body
Jul
21
comment Silverlight - Support For Dynamic Code?
And you can send them down to the server and load them into a Silverlight client side app?
Jul
21
asked Silverlight - Support For Dynamic Code?
Jul
17
comment JSON Data - Parsed Or ‘Eval’ed
that's one heck of a regular expression
Jul
17
revised JSON Data - Parsed Or ‘Eval’ed
added 155 characters in body
Jul
17
asked JSON Data - Parsed Or ‘Eval’ed
Jul
14
comment Yield In VB.NET
Yes, I did - I wrote a blog post explaining my screw up - I thought that it was funny that I escaped with no downvotes for all that time. :)
Jul
14
comment Yield In VB.NET
Linked my mistake to a blog post -- looks like I'll be paying for it here :)
Jul
13
revised Selecting value of <select> tag in javascript. problem
added 32 characters in body
Jul
10
comment Throw Exception VS Return Error within a Try,Catch,Finally
Thanks for your answer - BTW - this isn't real code - it was simply to illustrate the point :)
Jul
10
comment Throw Exception VS Return Error within a Try,Catch,Finally
I should have posted a more complex example - The short example is just to illustrate it - I'm talking about a larger example with more going on. Trying to avoid repeating error-handling code. Thanks for the answer though
Jul
10
revised Throw Exception VS Return Error within a Try,Catch,Finally
added 110 characters in body
Jul
10
asked Throw Exception VS Return Error within a Try,Catch,Finally
Jul
8
answered black and white Image processing in C#
Jul
8
comment Is it impossible to separate javascript from HTML?
Extracting the number doesn't have to be hard - if they are all in that format you can just do this.id.replace(/[^\d]/gi,"") and you're done.
Jul
7
answered Problem calling method inside another method in javascript?