Pandincus

688
reputation
121 views

Registered User

name Pandincus
member for 1 year
seen 20 hours ago
website
location US
age 23
Nov
1
answered ASP.Net GridView GridViewDeleteEventArgs.Keys empty
Oct
28
comment How do you implement GetHashCode for this structure?
+1 for pointing out the importance of using a commutative operation
Oct
26
asked Sending email with the MS Enterprise Library Logging Application Block via smtppickupfolder?
Oct
21
answered C# deleting a directory as another user
Oct
21
comment Favourite Features of VS 2010
I had no idea this was part of .NET 4 -- this looks great!
Oct
21
answered Favourite Features of VS 2010
Oct
21
comment C# .NET String object is really by reference?
Its not entirely irrelevant. If he would have passed in a mutable object, such as a StringBuilder, then it would have changed. He specifically asked about a string.
Oct
20
answered C# .NET String object is really by reference?
Oct
20
revised Security settings to start a windows service in a ASP.net web app
added info on using SubInACL to configure start/stop permissions on a windows service
Oct
20
answered Security settings to start a windows service in a ASP.net web app
Oct
20
comment Visual Studio 2008 - speed up Add Reference
+1 for funny, but really ... we're just browsing the GAC here. Why the slowness? (Not like I've ever written a program to browse and parse the GAC ... )
Oct
20
comment Visual Studio 2008 - speed up Add Reference
OMG I feel your pain, the worst is to get into a coding groove and then click "Add Reference" and ... all ... productivity ... halts ...
Oct
20
answered How to focus on a form input text field on page load using Jquery?
Oct
18
comment ASP.NET Ajax - Using jQuery BlockUI in two places; can I unblock a specific div?
Thanks for the info! simplemodal looks very nice, and I might use it for future projects. It turns out I was overcomplicating my problem, and I posted my 'solution' below.
Oct
18
accepted ASP.NET Ajax - Using jQuery BlockUI in two places; can I unblock a specific div?
Oct
18
answered ASP.NET Ajax - Using jQuery BlockUI in two places; can I unblock a specific div?
Oct
18
comment Why the barcode did not respond to image capture Command
Could you edit your original question to include some sample code? Are you sure that it didn't respond, beyond the light and beeping? It says in the manual that by default the beep and LED is disabled by default when using IMGSNP.
Oct
18
answered ASP.NET, JQuery - Sharing regular expressions
Oct
18
answered Why the barcode did not respond to image capture Command
Oct
18
comment Why the barcode did not respond to image capture Command
Found the documentation: lib.store.yahoo.net/lib/barcodescannersdiscount/…
Oct
18
comment Why the barcode did not respond to image capture Command
Could you please supply a little more information about the barcode scanner -- perhaps a link to the PDF documentation?
Oct
17
answered Detect Errored Devices on Windows XP with C#/pInvoke
Oct
16
comment Is jquery “:contains” selector accepts this kind of value “Banking and Finance”?
Oh yeah, didn't notice that samer was using a '#' in front of the selector. That and the quotes must be why its not working :-P
Oct
16
comment Is jquery “:contains” selector accepts this kind of value “Banking and Finance”?
@Aistina: I think you're right -- :contains doesn't have this problem for me. Dunno why the first example would work, though.
Oct
16
asked ASP.NET Ajax - Using jQuery BlockUI in two places; can I unblock a specific div?
Oct
16
comment Accessing td property of a html table through javascript and css.
Ah, well, in that case: $("#a01").attr("class", "yellowZone");
Oct
16
comment Accessing td property of a html table through javascript and css.
Good question -- I have no idea :-D. I don't usually use vanilla javascript DOM manipulation; I've been spoiled by jQuery, but I didn't want to give the OP an indirect answer of "Oh, just use jQuery."
Oct
16
accepted Why jQuery don’t want to style piece of html inserted with Ajax into new page
Oct
16
revised Why jQuery don’t want to style piece of html inserted with Ajax into new page
Updated answer to reflect OP's addition of code sample.
Oct
16
answered Why jQuery don’t want to style piece of html inserted with Ajax into new page
Oct
16
answered Accessing td property of a html table through javascript and css.
Oct
15
answered jquery toggle event within toggle event creates unexpected behavior.
Oct
14
comment BlockUI takes too long to block jQuery dialog
O noes! Beaten to the punch! :-D Good show, sir.
Oct
14
answered BlockUI takes too long to block jQuery dialog
Oct
14
comment BlockUI takes too long to block jQuery dialog
This is probably because blockUI uses animations to fade-in the modal popup, and while these animations are running asynchronously, your sort code begins to run. Since your sort code is running synchronously on your page, the browser is blocked until the sort code is finished. Your answer is to use a callback function, which I'm looking into right now ...
Oct
13
accepted Removed the option from select base on the option value in jquery
Oct
13
comment Why would you not use https on your public facing website?
Good point -- yeah, although it can be done, its never fun when a viewer goes to your site and sees a huge warning.
Oct
13
answered Removed the option from select base on the option value in jquery
Oct
13
answered Why would you not use https on your public facing website?
Oct
10
answered Getting a comma-delimited list of PK’s for duplicates of a record in SQL Server 2005?
Oct
6
awarded  Notable Question
Sep
27
awarded  Popular Question
Sep
9
answered Binding arrow keys in JS/jQuery
Aug
22
awarded  Yearling
Aug
21
awarded  Citizen Patrol
Aug
7
comment Collaborating with someone using older version of Visual Studio
I don't think you can target ALL versions of the framework in newer versions of Visual Studio. From msdn.microsoft.com/en-us/library/…, "Visual Studio 2008 includes version 3.5 of the .NET Framework. Visual Studio 2008 lets you choose whether projects target .NET Framework 2.0, .NET Framework 3.0, or .NET Framework 3.5." Unfortunately, that means if you're stuck working on some ancient 1.0 stuff, you can't use a newer version of Visual Studio :-(
Jul
22
comment SQL Server Management Studio Display Database Diagrams (ER) Permissions
What's the point in saying that researching this question is a 'waste of time'?
Jul
15
comment In C# .NET, is there a reason for no copy constructor for StringDictionary?
I guess laziness only gets you so far. OK, you've convinced me. :-D
Jul
15
awarded  Commentator
Jul
15
comment In C# .NET, is there a reason for no copy constructor for StringDictionary?
Yes, but isn't that for the generic Dictionary<typeKey, typeValue>, not for the specialized StringDictionary? I was just wondering why that very handy overload wasn't implemented for the specialized StringDictionary.