Tor Haugen

4,042
reputation
248 views

Registered User

name Tor Haugen
member for 1 year
seen 17 hours ago
website
location Norway
age 41
.NET coder since the previous millenium, not entirely innocent of Java, and with more javascript history than I care to think of. Oh, and all things [...]ML.
17h
answered .png images display in IE8 alone but not inside a page
18h
comment .png images display in IE8 alone but not inside a page
No, that's not it..
18h
comment .png images display in IE8 alone but not inside a page
The path is correct - after all, the images display sometimes. I have included a tag in the question.
18h
revised .png images display in IE8 alone but not inside a page
Added a code sample
18h
asked .png images display in IE8 alone but not inside a page
19h
comment Can I use the assemblies PublicKey to decrypt a string encrypted with the corresponding PrivateKey?
Verifying a digital signature is not decryption. Look it up.
19h
comment Is WPF the future of user interface design? Should I learn it now?
What I mean is the GUI is independent of Win32. I'm referring to those parts of the windows API traditionally used by applications to interact with the user: GDI (gdi.dll), GUI (user.exe), common dialogs (comdlg32.dll), common controls (commctrl.dll). This is the bulk of Win32 used by traditional apps, and no longer in use by WPF. Instead, WPF builds on DirectX to build the user interface.
2d
awarded  Mortarboard
Dec
4
answered How can I send MIME data with an email using c# aspx
Dec
4
answered Select two columns for two different tables in SQL Server 2000.
Dec
4
answered Can I use the assemblies PublicKey to decrypt a string encrypted with the corresponding PrivateKey?
Dec
3
comment Tab versus space indentation in C#
So you're saying I can use my preferences so long as they are also everyone elses preferences?
Dec
3
comment Tab versus space indentation in C#
Yes, life is too short. Too short for false diffs in source-code check-ins/merges because of different tabbing...
Dec
3
accepted Form action attribute not working - have to click submit button twice!
Dec
2
comment Comparing strings in java
Well, then why do 4, 5 and 6 return true?
Nov
30
answered Form action attribute not working - have to click submit button twice!
Nov
30
comment Visual Studio 2008 IDE, typing open quote doesn’t output it until quote is typed again
Does this happen in all editors? Or just in the code editor, HTML editor etc?
Nov
27
awarded  Civic Duty
Nov
27
comment how to write serverside validations in java for unique field
If you want urgent help, it's a good idea to actually ask a question!
Nov
27
answered Does a capital Decimal use more memory as a lowercase decimal
Nov
26
comment Centralised settings in C# for multiple programs
The different apps would still have separate working directories and config files, so the problem with locating the settings will remain.
Nov
26
revised SQL putting two single quotes around datetime fields and fails to insert record
Elaborated; added 81 characters in body
Nov
26
answered SQL putting two single quotes around datetime fields and fails to insert record
Nov
26
comment SQL putting two single quotes around datetime fields and fails to insert record
Hm. Did you actually read the question?
Nov
24
answered C# Auto Property - Is this ‘pattern’ best practice?
Nov
23
comment Why I cannot derive from long?
Well, a downside of this approach is that the extension methods will show up in intellisense for every long, whether appropriate or not.
Nov
23
comment Why I cannot derive from long?
My guess is it's not actually 'his' function, because then he wouldn't have this problem. Perhaps it's an extern, or at least some class library out of his control.
Nov
23
answered Why I cannot derive from long?
Nov
23
answered XBAP Can I deploy XBAP without sigining in full trust???
Nov
19
accepted Wild card search in C#
Nov
18
accepted How do I make sure a file path is safe in C#?
Nov
18
answered How do I make sure a file path is safe in C#?
Nov
18
comment How can I load an SWF from a C# EmbeddedResource without first writing to file?
You won't have to set up a full webserver, just a tcp listener which will respond with a simple, predefined header and the swf content. But you'll need a free TCP port, and a background worker. I guess there's some potential for trouble, but it's not rocket science.
Nov
11
accepted LEFT OUTER JOIN (gives extra rows) problem
Nov
11
revised LEFT OUTER JOIN (gives extra rows) problem
added 145 characters in body
Nov
11
comment LEFT OUTER JOIN (gives extra rows) problem
That would work in this simplified case, but I'm pretty sure in reality his rhs table has more columns - and then distinct won't help.
Nov
11
answered LEFT OUTER JOIN (gives extra rows) problem
Nov
11
comment What is difference between And and Andalso in VB.net ?
First, Andalso is not primarily used to 'save on runtime', that's preposterous. Second, having the second argument perform some useful 'side effect' is ugly-ass bad practice.
Nov
5
answered What is the difference between a character array and string?
Nov
4
accepted Class design: Access a List<T> directly or through methods?
Nov
4
comment Class design: Access a List<T> directly or through methods?
@Matt: Notice I did say at the top "as IList or IEnumerable". Surely IEnumerable<T> is general enough.
Nov
4
comment Class design: Access a List<T> directly or through methods?
It did ;-) I fixed it.
Nov
4
answered Class design: Access a List<T> directly or through methods?
Nov
2
comment Problem escaping string
He said GetRoot() returns a string. So the ToString() is pointless.
Nov
2
comment Problem escaping string
What do you get?
Nov
2
comment Create pitch changing code?
Unless you wonder how to create an app to do that, the question probably belongs on superuser.com.
Nov
2
comment How does JavaScript memory work in browsers?
What exactly do you mean by "cached and not kept in memory"? That doesn't make any sense to me.
Nov
2
answered How to check for valid value before converting Decimal
Oct
29
awarded  Yearling
Oct
26
comment C# Check Object Array For Duplicates
Bad practice to use exceptions for process flow!