Brann

5,842
reputation
994 views

Registered User

name Brann
member for 12 months
seen 4 hours ago
website
location France
age 27
1d
comment Why not use exceptions as regular flow of control?
@Ken: Unfortunately, most people relying on exceptions are re-using standard exceptions. Or, to be more specific, they let the CLR raise those exceptions (eg they don't test a variable for nullity, and handle the nullref if needed). That being said, even with user exceptions, my point still stands, unless you rely on a different exception type each time you need to raise one, which doesn't seem very convenient either ...
Dec
11
comment Why not use exceptions as regular flow of control?
@Ken : let's say I rely here and there on NullReferenceException to handle my control flow. Do you advocate disabling nullref exception catching in your environment development? If you do so, what if an unexpected (ie, not used for regular control flow ) nullref exception is raised? You simply don't have any way to locate it easily (since if you catch nullref exceptions, you'll be stuck in endless loops raising nullref exceptions every few milliseconds for 'regular control flow reasons' ...
Dec
9
awarded  Popular Question
Dec
7
comment Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?
Unfortunately, I'm afraid the users I'm targetting are not going to watch any screencats, nor read any manual for that matter... That's why I want to provide inline contextual help
Dec
6
awarded  Mortarboard
Dec
3
comment What are common UI misconceptions and annoyances?
@Sam : Some programs will ask you "Do you want to save before exiting?" while others will ask "Are you sure you want to exit without saving?". Closing dialogs without reading them (which is what you do in your autopilot mode) is common among users, and often result in catastrophes. Are you going to tell me you never witnessed this ??
Dec
1
comment Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?
Fixing Clippy might be possible, but it would require a huge amount of work. I'd like to focus on my business, not on AI algorithms and 3D rendering ...
Dec
1
revised Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?
added 234 characters in body
Dec
1
comment Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?
@Mark : and to answer your initial question : I don't imply my UI is perfect (it is certainly not!). But once all the relevant things have been done to improve it, there can be a remaining complexity that can't be addressed by "rethinking the UI". Thus my search for other ways to tackle the issue, including help/tooltips/clippy/etc. Think as an airliner cockpit for example.
Dec
1
comment Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?
I like this solution, which is an improved "?" button. But it doesn't address some of the problem of an efficient help, including answers to the "where do I start? what do I do next" problem. It also doesn't help you grasp a whole interface in an eye glance.
Dec
1
comment Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?
@Mark : what about Word - or other text editors? It's obvious MS has put a lot of effort into polishing the UI, but still it's very confusing to new users. I consider myself as a power-user, but still there are some things here and there I don't understand immediately. Take word 2007 and show the rulers for example. Do you see the "left tab" button on the left? What is it for? Is it obvious ?
Dec
1
revised Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?
added 276 characters in body; added 232 characters in body
Dec
1
revised Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?
deleted 73 characters in body
Dec
1
asked Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?
Nov
27
awarded  Popular Question
Nov
23
awarded  Nice Answer
Nov
12
comment Why is my WCF server returning empty responses using protobuf-net ?
@Marc: Thanks for your support and time. I'll try the .config thing and hopefully confirm you it solved the problem :)
Nov
11
answered The future direction of Help File formats
Nov
7
comment What constitutes beautiful code?
Art is maybe partially objective, but "good art" is definitely subjective. Regarding blue canvas, see : "Suprematist Composition : White on White" by Kazimir Malevich moma.org/collection/…, worth thousands of dollar ...
Nov
4
revised How can I enhance the aesthetics of an ugly windows form packed with too many (necessary) features?
deleted 4 characters in body
Oct
30
comment Why is the winforms designer ignoring attributes on overriden properties ?
vs2008 v9.0.30729.1 SP
Oct
29
asked Why is the winforms designer ignoring attributes on overriden properties ?
Oct
29
accepted How can I use a ssl wildcard certificate to mutually authenticate several WCF servers via X509?
Oct
28
answered How can I use a ssl wildcard certificate to mutually authenticate several WCF servers via X509?
Oct
28
revised How can I use a ssl wildcard certificate to mutually authenticate several WCF servers via X509?
added 152 characters in body
Oct
28
comment How can I use a ssl wildcard certificate to mutually authenticate several WCF servers via X509?
I am using transport security. This id defined in the binding section like this : <security mode="Transport"> <transport clientCredentialType="Certificate" protectionLevel="EncryptAndSign"> </transport>
Oct
28
comment How can I use a ssl wildcard certificate to mutually authenticate several WCF servers via X509?
Yes, my certificate can be used as an X509 certificate (Just asked Comodo)
Oct
28
answered What’s the key to the field “this certificate is encoded for the following purpose(s)” in ssl certificates ?
Oct
28
asked What’s the key to the field “this certificate is encoded for the following purpose(s)” in ssl certificates ?
Oct
27
revised How can I use a ssl wildcard certificate to mutually authenticate several WCF servers via X509?
edited tags
Oct
27
asked How can I use a ssl wildcard certificate to mutually authenticate several WCF servers via X509?
Oct
23
comment Why is my WCF server returning empty responses using protobuf-net ?
re app.config support, if I understand correctly, that would definitely be a very nice addition as it would allow for providing client with a Soap AND a protobuf enabled service, with a single service definition.
Oct
23
comment Why is my WCF server returning empty responses using protobuf-net ?
Hi Marc; thanks for your quick answer. The shared assembly (which was the only one modified so far), the client and the server are in a single .sln and both reference the shared assembly project. Does that answer your question?
Oct
22
accepted How can I automate the “generate scripts” task in SQL Server Management Studio 2008 ?
Oct
22
revised Why is my WCF server returning empty responses using protobuf-net ?
added 202 characters in body; edited title
Oct
22
revised Why is my WCF server returning empty responses using protobuf-net ?
added 61 characters in body
Oct
22
asked Why is my WCF server returning empty responses using protobuf-net ?
Oct
19
comment How do you deal with exceptions in UserControls constructors when using the .net Winform Designer ?
just try it : create a blank form, and add "throw new Exception()" at the very first line of the constructor (that is, before the call to Initializecomponent). You'll see that the winform designer can still load the form.
Oct
18
awarded  Popular Question
Oct
15
asked What are SSIS packages deployment and change-tracking best practices ?
Oct
15
revised What should a developer know before building a public web site?
added link regarding 301 vs 302 redirects
Oct
14
comment When create a static method
@Facticius Vir : It slightly hurts code readability without providing any advantages I can think of (as you mentioned, it has no impact on IL). I think anything reducing code readability should be avoided unless there's a significant upside. Let alone no upside at all !
Oct
14
comment When create a static method
Granted var is strongly typed. That being said, I have yet to see a single post advising to write "For(var i" instead of "For(int i" (including in the thread HubezA pointed to ( stackoverflow.com/questions/236878/… )
Oct
14
comment When create a static method
You should strong type your variables (ie string, int) instead of using var as you do. Var is mainly intended for specific situations involving linq, and should NOT be used in a for loop as you do.
Oct
13
answered Save Visual Studio 2008 Toolbox Settings
Oct
13
comment Windows Forms Designer destroys form layout
Have you tried to create a new blank form, to copy the designer code into it, to rebuild, and then to delete the old form/rename the new one to the old name? Of course, you would loose the checkin history for this form :(
Oct
13
revised Windows Forms Designer destroys form layout
added 327 characters in body
Oct
13
comment Windows Forms Designer destroys form layout
There's no such option. You need to close VS, and remove the folder manually. I'm updating my post to add some guidelines regarding how to do this.
Oct
13
answered Windows Forms Designer destroys form layout
Oct
13
answered Windows Forms Designer destroys form layout