Joe

10,773
reputation
434 views

Registered User

name Joe
member for 1 year
seen 5 mins ago
website
location
age
1d
accepted What can be set in the FormsAuthenticationTicket?
Dec
11
answered asp.net - variable pass between ascx and page
Dec
10
answered How to skip Validating after clicking on a Form’s Cancel button.
Dec
10
awarded  Popular Question
Dec
9
answered Accessing Excel.ComboBox from C#
Dec
9
comment How to record window position in WinForms application settings
I wasn't very clear was I. In this sample, UserPreferencesManager is a class I wrote, that does the work of loading and saving settings to a persistent medium. This was for .NET 1.1, these days you'd use the .NET 2.0 Settings architecture for persistence. Note that the focus of this sample was the order in which properties are set when loading settings, rather than the details of how they're saved / restored.
Dec
8
accepted .Net Membership in nTier App
Dec
7
revised ASCII Encoding and Umlauts and Accents
deleted 24 characters in body
Dec
7
answered ASCII Encoding and Umlauts and Accents
Dec
6
awarded  Mortarboard
Dec
6
comment ASP.NET C#: Caching Database Results, When/How Invalidate (on per-record basis)
"update the cache at the same time as the database is updated." - as described in my answer, it's better to simply remove from the cache after the database is updated.
Dec
6
answered ASP.NET C#: Caching Database Results, When/How Invalidate (on per-record basis)
Dec
4
comment C# string format flag or modifier to lowercase param
" I can't see why just calling .tolower() or .toupper() on the string params is a problem" - for example, data binding.
Dec
4
answered Simulating Application in WCF
Dec
4
answered How can I have both abstract and virtual methods in one class?
Dec
3
answered C# string format flag or modifier to lowercase param
Dec
2
accepted System.Text.Encoding isn’t
Dec
2
revised Does Math.Round(double, decimal) always return consistent results.
added 1100 characters in body
Dec
2
comment Does Math.Round(double, decimal) always return consistent results.
Sure, but I'm talking about using the same rounding method on two different values which will round to the "same" result. See astander's answer.
Dec
2
revised Does Math.Round(double, decimal) always return consistent results.
added 177 characters in body; added 86 characters in body
Dec
2
asked Does Math.Round(double, decimal) always return consistent results.
Dec
2
comment Storing Connection Strings in Registry?
... but don't forget that RegistryKey implements IDisposable, so that you should wrap each instantiation in a "using" statement. Something that is neglected in far too many MSDN samples...
Dec
1
comment Problems with DataContractSerializer - how to correctly serialize objects deriving from List<T>?
The assertion that is failing is based the Equals method whose implementation is omitted to save space. You'll have more chance of an answer if you can provide the implementation (or a simpler implementation that also fails).
Dec
1
accepted Can you call PadLeft inside a databound server control?
Dec
1
answered Can you call PadLeft inside a databound server control?
Dec
1
accepted IIS / DirectoryEntry / ASP.NET - Logon Failure
Dec
1
comment SQL Server CONVERT(NUMERIC(18,0), ‘’) fails but CONVERT(INT, ‘’) succeeds?
The above won't work for all input strings, for example try @a='-' or @a='$'. See the article referenced in my answer.
Nov
30
revised Convert month name to month number in C#
added 304 characters in body
Nov
30
answered Convert month name to month number in C#
Nov
30
revised Is it important to dispose SolidBrush and Pen?
added 94 characters in body
Nov
30
revised Is it important to dispose SolidBrush and Pen?
added 121 characters in body
Nov
30
comment Is it important to dispose SolidBrush and Pen?
Yes I agree. But in the linked example, this isn't possible, because Pens and Brushes only contain elements for a fixed number of predefined colors.
Nov
30
comment Is it important to dispose SolidBrush and Pen?
I understand that they'll eventually be GC'd, but when? I wouldn't expect memory to grow, rather the number of handles used. And to test all cases I'd need to be sure to be creating brushes/pens of different colors.
Nov
30
comment Is it important to dispose SolidBrush and Pen?
Yes I understand that the GC will eventually kick in, but, since OnPaint can be called frequently, is there a risk that more than "a few" handles are "wasted".
Nov
30
comment Is it important to dispose SolidBrush and Pen?
My question isn't about the IDisposable pattern in general, I understand what it's for and why callers should generally call Dispose. See Edit to the question.
Nov
30
revised Is it important to dispose SolidBrush and Pen?
added 855 characters in body
Nov
30
asked Is it important to dispose SolidBrush and Pen?
Nov
30
answered Do we consider this as a bug?
Nov
29
comment C#/.NET: How to determine whether an exception is being handled?
If you do go down this path, take a look at the following blog first: geekswithblogs.net/akraus1/archive/…
Nov
29
answered C#/.NET: How to determine whether an exception is being handled?
Nov
28
accepted Relation between .NET Encoding and Characterset
Nov
28
revised “Remember password” option [C#]
added 80 characters in body
Nov
28
answered “Remember password” option [C#]
Nov
28
revised Lightweight readonly alternative to DataTable for storing data from SqlDataReader?
deleted 2 characters in body
Nov
28
accepted Lightweight readonly alternative to DataTable for storing data from SqlDataReader?
Nov
28
answered what are the most significant disadvantages of using UML?
Nov
28
answered SQL Server CONVERT(NUMERIC(18,0), ‘’) fails but CONVERT(INT, ‘’) succeeds?
Nov
28
answered Relation between .NET Encoding and Characterset
Nov
28
comment Lightweight readonly alternative to DataTable for storing data from SqlDataReader?
The typed enumerable is enumerated on the fly, so is more comparable with an IDataReader than a DataTable. You can't really compare performance with filling a DataTable unless you store the data somewhere (e.g. the mimimalist List<object[]>).
Nov
28
comment Lightweight readonly alternative to DataTable for storing data from SqlDataReader?
I'm very unclear about what you're comparing when you talk about speed differences between the DataTable class and the Execute<T> method.