Fredrik Mörk
|
Registered User
|
I am a software developer specializing in the .NET environment, based in the south of Sweden. I run my own company, working as a consultant writing software mainly for large companies.
When I am not at work, getting paid for producing great software, I still do a fair share of programming, for the fun of it, when I am not spending time with my family, out biking or doing some photography. That is the short version. For the long version check the "About me" page of my personal web site. For scattered glimpses, follow me on twitter. |
|
7h |
answered | LINQ Select Query Question |
|
7h |
revised |
Invoking a method from a class added 326 characters in body; added 343 characters in body |
|
8h |
answered | Invoking a method from a class |
|
8h |
accepted | C# multiple selection listbox move |
|
8h |
answered | C# multiple selection listbox move |
|
8h |
answered | Unterminated string constant error |
|
12h |
answered | Calling C# code from VB.net code |
|
14h |
answered | Are there any inobvious ways of abusing GUIDs? |
|
19h |
comment |
Larger .maxstack when not storing a reference? @Cecil: it is release complied (as stated in the question, however buried in the text). |
|
19h |
asked | Larger .maxstack when not storing a reference? |
|
19h |
revised |
is var x = new Stuff(); x.DoStuff(); faster than new Stuff().DoStuff(); ? deleted 79 characters in body; deleted 152 characters in body |
|
20h |
answered | is var x = new Stuff(); x.DoStuff(); faster than new Stuff().DoStuff(); ? |
|
20h |
answered | DateTime question |
|
1d |
accepted | Can someone please explain to me in the most layman terms how to use EventArgs? |
|
1d |
comment |
screen keyboard , or virtual keyboard component Duplicate? stackoverflow.com/questions/661722/… |
|
2d |
revised |
how to use backgroundworker with remote class added 78 characters in body; added 278 characters in body |
|
2d |
answered | how to use backgroundworker with remote class |
|
Dec 12 |
accepted | Implement IEnumerable<T> For a List Wrapper |
|
Dec 12 |
revised |
Implement IEnumerable<T> For a List Wrapper added 923 characters in body |
|
Dec 12 |
answered | Implement IEnumerable<T> For a List Wrapper |
|
Dec 12 |
revised |
Why doesn’t the javascript output anything? added 5 characters in body |
|
Dec 12 |
accepted | “FormatException was unhandled” Input string was not in a correct format. |
|
Dec 12 |
answered | Non-strict multiple interface type parameter constraints? |
|
Dec 12 |
comment |
“FormatException was unhandled” Input string was not in a correct format. @Shanatu: your method could (and probably should) return DBNull.Value. All I am saying is that you cannot use Convert.IsDBNull to test for null. That is not what that method does. It tests for DBNull objects. This means that if you pass null to your original code, it will try to convert that null to the given type, which will fail for int, DateTime and all other value types. This is a bug in your code. However, I don't think this is the problem that you are facing right now (guessing from comments), since this would give you an InvalidCastException, not a FormatException. |
|
Dec 11 |
comment |
“FormatException was unhandled” Input string was not in a correct format. @Shanantu: I am just trying to point out that there is a difference between null and DBNull.Value. DBNull.Value is not a null reference (it is a DBNull instance), and Convert.IsDBNull checks whether the passed object is a DBNull object. Obviously, a null reference is not a DBNull object, so the method should return false. Since you in your question stated that you wanted to check if the input was a null reference, Convert.IsDBNull cannot do the job for you. |
|
Dec 11 |
answered | “FormatException was unhandled” Input string was not in a correct format. |
|
Dec 11 |
awarded | ● Nice Answer |
|
Dec 11 |
comment |
Why is string.Empty more efficient than “” in .Net @JonoW: never measured it, but it would surprise me if there is any difference. |
|
Dec 11 |
accepted | Why is string.Empty more efficient than “” in .Net |
|
Dec 11 |
revised |
Why is string.Empty more efficient than “” in .Net added 161 characters in body |
|
Dec 11 |
answered | Why is string.Empty more efficient than “” in .Net |
|
Dec 11 |
comment |
C# : How to convert string to DateTime, where the string can have any of the standard datetime format … @Aravind: note that the method in the last example has the return type DateTime? (note the question mark); this means that it is a nullable type, where null is a valid value. |
|
Dec 11 |
awarded | ● Nice Answer |
|
Dec 11 |
accepted | C# : How to convert string to DateTime, where the string can have any of the standard datetime format … |
|
Dec 11 |
revised |
C# : How to convert string to DateTime, where the string can have any of the standard datetime format … added 647 characters in body |
|
Dec 11 |
comment |
C# : How to convert string to DateTime, where the string can have any of the standard datetime format … @Henk: thanks. I expected that but didn't find it. I now realize that I was only looking at TryParse... |
|
Dec 11 |
answered | C# : How to convert string to DateTime, where the string can have any of the standard datetime format … |
|
Dec 11 |
comment |
Restricting Email to not sent in Junk Folder and can it possible from Email hide to recipient? I agree with Eric. You may want to explain why you want to do this. |
|
Dec 11 |
answered | How to change connection string automatically on build with Nant |
|
Dec 10 |
comment |
C# need to convert column with date @Mike: I tried to run my code with the input from your comment. It outputs 386131|386134|386131|386149|02/22/2007. Verify that you invoke ReformatDate only on the expected column. |
|
Dec 10 |
comment |
C# : OnClosing takes a while, how can I show a dialog with a marquee progressbar ? @Michael: thanks, didn't think about that. Edited. |
|
Dec 10 |
answered | C# : OnClosing takes a while, how can I show a dialog with a marquee progressbar ? |
|
Dec 10 |
comment |
C# need to convert column with date You can just make them non-static and internal or public as needed. |
|
Dec 10 |
revised |
C# need to convert column with date added 2 characters in body |
|
Dec 10 |
revised |
C# need to convert column with date added 281 characters in body |
|
Dec 10 |
revised |
C# need to convert column with date added 776 characters in body; added 162 characters in body |
|
Dec 10 |
revised |
C# need to convert column with date added 194 characters in body |
|
Dec 10 |
answered | C# need to convert column with date |
|
Dec 10 |
comment |
Is there a way to tell if the user would prefer metric or imperial without asking in C#? I would ignore me as well, if I was in an internet café in London. I would greatly appreciate an option to override the guess. |
|
Dec 10 |
comment |
Inactive control background color I think that it is rather established that textboxes with "gray" (as in SystemColors.Control) are not editable, so I would not really consider this a problem. But if the customer says so, well, then the customer says so. |
