Mats Fredriksson

2,306
reputation
196 views

Registered User

name Mats Fredriksson
member for 1 year
seen 5 hours ago
website
location London
age 30
Umm, some kind of coder...
Dec
11
revised How to customize save behaviour in Word using VSTO
fixed typo
Nov
20
accepted Filter SQL queries on the XML column using XPath/XQuery
Nov
13
revised Filter SQL queries on the XML column using XPath/XQuery
added 12 characters in body
Nov
13
answered Filter SQL queries on the XML column using XPath/XQuery
Nov
13
asked Filter SQL queries on the XML column using XPath/XQuery
Nov
10
comment C# - Not saving right in Array - why will it save the first one but not the rest?
Wow. Where to begin? Wallter: could you include some examples from the empdata.txt file? And perhaps add some comments? The method getSaveEmpdataPrint() is a beast.
Nov
5
comment atexit, exit delegate in c#
Cool. Unfortunately I need it in console mode.. Probably should have mentioned that.
Nov
5
comment atexit, exit delegate in c#
So probably need to catch both events then, the ProcessExit and the ConsoleCancelEventHandler. Would be neat with just one event that's always called. Well, well..
Nov
5
comment atexit, exit delegate in c#
I know how to shut down applications, I'm interested in how to attach events to when that happens. Thanks anyway tho.
Nov
5
comment atexit, exit delegate in c#
Doesn't seem to catch Ctrl-C though. Know anything about that?
Nov
5
revised atexit, exit delegate in c#
added 116 characters in body
Nov
5
asked atexit, exit delegate in c#
Nov
2
comment Create Aperture / depth of field affect
What do you want to blur? Is it data in a 3d program, such as Maya or 3D Studio, or photos from a camera? Is it real time graphics?
Oct
19
comment C#: Exception handling in recursive call
what's the difference between your "path" and the callstack property that's present on Exception?
Oct
15
comment Multithreaded Syncronised List<T>
Good idea to keep the posting in case others decide they want to write one themselves! +1
Oct
15
revised Multithreaded Syncronised List<T>
edited body
Oct
15
comment Multithreaded Syncronised List<T>
Pretty dangerous class which fixes some synchronisation issues, but not all and gives the user a false sense of security.
Oct
15
comment Multithreaded Syncronised List<T>
anything or anyone using the enumerator outside of the locks would have race conditions.
Oct
15
revised Multithreaded Syncronised List<T>
Adding more issues; added 250 characters in body
Oct
15
answered Multithreaded Syncronised List<T>
Oct
13
comment Formatting Numbers as Strings with Commas in place of Decimals in C#
@luke: it says "display this number as 4,3 for some of our European friends" which I would interpret as "display values according to the end users locale", but I might be wrong. If he want to display it according to the end users culture I would use the culture. Not a randomly picked one, true, but the end users.
Oct
13
comment Formatting Numbers as Strings with Commas in place of Decimals in C#
@James: except that it's pretty useless since culture support is built into .NET. Better to do this the supported way rather than reinventing it.
Sep
28
revised Jquery Post + run php file > hide the form > give message…
added 4 characters in body
Sep
14
accepted Store Timestamp in GridView
Sep
11
awarded  Popular Question
Sep
10
answered Store Timestamp in GridView
Sep
10
comment Store Timestamp in GridView
that's another question, but I think it happens when I bind it. In the Update part I map the input/output parameter to Int64 which seems to be a good data holder.
Sep
10
asked Store Timestamp in GridView
Aug
27
awarded  Yearling
Jul
13
comment Method-Chaining in C#
don't need to restrict the argument to AddItem to MyClass. Could probably Object, or Item, or something.
Jul
13
answered Method-Chaining in C#
Jul
7
revised if else statement not working!
Clean up the formatting
Jun
25
answered Convert BYTE buffer (0-255) to float buffer (0.0-1.0)
Jun
23
comment Most efficient way to monitor a queue
No sleeps unless you have no control whatsoever over the producer. Use events or signals to do proper waiting/notifications.