Sander

3,419
Reputation
120 views

Registered User

Name Sander
Member for 1 year
Seen 4 hours ago
Website
Location EE
Age
1d
awarded  Tumbleweed
2d
awarded  Popular Question
Nov
22
comment How stable is VS2010 beta 2?
No, it doesn't. It means you are allowed to publish the software you create with it. And that would be the answer to a "what" question, anyway, not a "where" question...
Nov
22
answered Prevent Silverlight 3 from caching while debugging
Nov
19
asked Nontrivial incremental change deployment with Visual Studio database projects
Nov
12
accepted Is it possible to determine the current user from within a global keyboard hook in .NET
Nov
5
comment Problem Publishing Silverlight Application LocalHost
What do you mean by "trying to publish"? What exactly are you trying to do and how are you trying to do it?
Oct
27
revised Is there a documented JavaScript API for Windows Media Player?
Fixed link for more useful version
Oct
15
revised What should a developer know before building a public web site?
Removed highly arguable bit about table-based layout
Oct
14
accepted Change windows 7 hotkey or disable monitor orientation
Oct
14
answered Change windows 7 hotkey or disable monitor orientation
Aug
27
awarded  Yearling
Aug
18
comment What became of ‘The last one’?
I see no reason to wiki this - it is a legitimate non-chat question that can have a concrete answer.
Aug
17
comment What is your best programmer joke?
The "This is a true joke" bit ruins it...
Aug
12
answered Writing a 2D RTS game in C#: graphics library options?
Aug
6
asked How to avoid jerky animations when adding several UserControls?
Aug
5
comment Worst UI You’ve Ever Used
I actually find it to be pretty usable once you hide all that pointless crap and are left with a barebones UI. It works much better than Visio or Enterprise Architect, at least. Definitely not something I'd be proud of making but it is usable. Some of the stuff is particularily preplexing, though... like a toolbar button for creating a new diagram... that is, one button for every possible diagram type!
Aug
5
comment Can’t get Linq To Sql log output
Maybe it isn't actually executing any query? Are you sure it even gets to that point? Post the exception.
Aug
5
comment What are common UI misconceptions and annoyances?
I once worked on an application that had a huge form that needed to fit in a tight space. The programmers did a Tetris job on it, so it somehow fit but everyone hated it because it was missing all logic in the arrangement, which made data entry hard. So the project manager figured out a brilliant solution... customize the tab order so it goes in the order that the data entry people want to enter the data! I believe an appropriate name would be the write-only form paradigm...
Aug
5
comment What are common UI misconceptions and annoyances?
Indeed! This is actually often a bad idea for failures, as well! It is generally much better to just use a far more unobtrusive approach. Imagine the red X for missing images in IE - this is a good way to handle errors, instead of some "Failed to load image ABC!" message box. Message boxes should only be used if their meaning is not available from the primary context itself (e.g. page/document/...).
Aug
4
revised How to force requests to be JSON? I.e. how to block XML body?
added 147 characters in body; added 4 characters in body; added 155 characters in body
Aug
4
asked How to force requests to be JSON? I.e. how to block XML body?
Aug
3
revised What is the best way to get the executing exe’s path in .NET?
GetExecutingAssembly() -> GetEntryAssembly()
Aug
3
comment Detect local SQL server installation with C#(32 bit as well as 64 bit)
A specific version? Any version? Does bitness matter (32-bit or 64-bit)? Editions? Does it matter if its actually running? Does it matter if you are able to access it? What exactly do you need to find out? "Installed or not" is not as clear cut as it may seem.
Aug
3
comment C# Decimal to Numeric(?,?)
No need not to, either... people can downvote for whatever reason they want to :)
Aug
3
revised Can’t work out why I can’t format this text
Clarified reasoning
Aug
3
comment Difference IE and Webkit
Could you link to a live repro? It would be easier to debug this if we could load the page up in a browser.
Jul
22
comment Common programming mistakes for .NET developers to avoid?
From what I've seen, it's pretty common practice to ignore errors that occur during error logging. Why is this bad? How should the situation be handled instead?
Jul
13
comment What was the strangest coding standard rule that you were forced to follow?
I always enforce this rule. I suppose it's due to my belief if the broken windows theory (being sloppy in one place encourages people to be sloppy in other places).
Jul
9
comment Team Foundation Server (TFS) - can’t browse folders properly using Visual Studio
Source control, documents and reports all exist in different systems with potentially different access rights - maybe your user account has broken permissions? Does a different account on the same machine still fail?
Jun
24
accepted How do I get the actual value of a DependancyProperty?
Jun
17
revised Extending System.Data.Linq.DataContext
edited tags
Jun
17
comment Extending System.Data.Linq.DataContext
Indeed, it is almost certain to be this. One should never have the using statements outside the namespace in the DBML's code-behind file.
Jun
15
revised What is a Windows API?
Clarified the API as being the set of functions and data structures
Jun
11
answered .NET: Do I need to keep a reference to WebClient while downloading asynchronously?
Jun
11
answered How Java Thread Class Determines Which thread?
Jun
11
answered WCF-endpoint listening
Jun
9
answered IIS 7, ASP.NET: AccessViolationException
Jun
9
revised Too “careless” in programming?
Small grammar fixes
Jun
8
comment SilverLight file upload?
There is no way to do it, indeed. This has just not been a very high priority. Very few applications need this functionality and Microsoft has more pressing needs. If you have a relevant business case, feel free to get in touch with them and describe your problem. They certainly listen to feedback, although I imagine it'll be too late to get anything into SL3.
Jun
5
comment What’s the best way for a .NET winforms application to update itself without using ClickOnce?
Sure you can. You have your exe rename itself, queue a "delete after restart" command on the old version and copy in the new version. The old app can then run the new app and exit immediately afterwards, possibly passing some sort of /upgrade parameter, so the new app knows that potentially old stored data structures need to be updated.
Jun
5
comment What is the best or most interesting use of Extension Methods you’ve seen?
Goes against normal bounding pratcice? Nonsense. "0 to 16" is always inclusive in speec and concept. In for-loops, it is normal to use max+1 as the number in the condition, simply because the indexes in a 5-item list go 0...4 and it's more meaningful to look at "< 5" than "<= 4".
Jun
4
comment How do I override a method?
Please explain in detail a) what do you want to override; b) why do you want to override it? I get the feeling that the whole cause of the problem is that you are trying to override where you don't actually need to override anything.
Jun
4
comment storing hashed passwords - base64, or hex string, or something else?
The idea is generally sound - bytes can easily be stored as bytes. However, this may make manual manipulation somewhat difficult, since it's not generally possible to see binary data in any reasonable format using an editor/IDE/tool.
Jun
4
revised How to get all classes within namespace?
Changed to use somewhat more correct string comparison, as per comment
Jun
4
awarded  Nice Answer