Click here to Skip to main content
15,886,199 members

The Weird and The Wonderful

   

The Weird and The Wonderful forum is a place to post Coding Horrors, Worst Practices, and the occasional flash of brilliance.

We all come across code that simply boggles the mind. Lazy kludges, embarrassing mistakes, horrid workarounds and developers just not quite getting it. And then somedays we come across - or write - the truly sublime.

Post your Best, your worst, and your most interesting. But please - no programming questions . This forum is purely for amusement and discussions on code snippets. All actual programming questions will be removed.

 
JokeRe: How to determine if button should be shown? PinPopular
Chris Maunder26-Jul-09 3:17
cofounderChris Maunder26-Jul-09 3:17 
GeneralRe: How to determine if button should be shown? Pin
Jarek Kruza26-Jul-09 9:37
Jarek Kruza26-Jul-09 9:37 
GeneralRe: How to determine if button should be shown? Pin
BillW3314-Aug-09 2:57
professionalBillW3314-Aug-09 2:57 
GeneralRe: How to determine if button should be shown? Pin
Paul Conrad26-Jul-09 11:04
professionalPaul Conrad26-Jul-09 11:04 
GeneralRe: How to determine if button should be shown? Pin
supercat928-Jul-09 6:21
supercat928-Jul-09 6:21 
GeneralRe: How to determine if button should be shown? Pin
SteveTheThread2-Aug-09 22:34
SteveTheThread2-Aug-09 22:34 
GeneralRe: How to determine if button should be shown? Pin
Tristan Rhodes3-Aug-09 0:56
Tristan Rhodes3-Aug-09 0:56 
GeneralRe: How to determine if button should be shown? Pin
supercat93-Aug-09 5:14
supercat93-Aug-09 5:14 
Even if it was decompiled, that would still mean that all the show / hide conditions are tied to various color settings. Anyone who has to rip code to that extent needs a freaking lobotomy.

I've seen code like that on systems from any era that supported color (it would be rather hard to use such code on a system that didn't). Many types of controls support a 'tag' property which could be pointed to a sensible object including all necessary ancillary information, but some controls don't. If there's no need to serialize the controls, color might not be totally horrible if one used constants named based upon [i]meaning[/i] and explicitly stated in the comments that all values must be unique (I think the use of a Select Case construct somewhere could enforce that requirement). I would consider the following horrible: If ThisThing.Color = Colors.Red Then ThisThing.Delete but I would consider If ThisThing.Color = FlagColors.Deletable Then ThisThing.Delete to be rather less horrible. I would guess that both pieces of source would yield identical compiled code, however, so a disassembler would guess at the former meaning.
GeneralRe: How to determine if button should be shown? Pin
Tristan Rhodes3-Aug-09 0:57
Tristan Rhodes3-Aug-09 0:57 
General!(How to best use a try catch block) [modified] Pin
singh.iz.king8-Jul-09 17:17
singh.iz.king8-Jul-09 17:17 
GeneralRe: !(How to best use a try catch block) Pin
killabyte9-Jul-09 0:38
killabyte9-Jul-09 0:38 
GeneralRe: !(How to best use a try catch block) Pin
josda10009-Jul-09 3:31
josda10009-Jul-09 3:31 
GeneralRe: !(How to best use a try catch block) Pin
Dan Neely9-Jul-09 3:43
Dan Neely9-Jul-09 3:43 
GeneralRe: !(How to best use a try catch block) Pin
molesworth9-Jul-09 3:39
molesworth9-Jul-09 3:39 
GeneralRe: !(How to best use a try catch block) Pin
Andrew Rissing9-Jul-09 3:51
Andrew Rissing9-Jul-09 3:51 
GeneralRe: !(How to best use a try catch block) Pin
molesworth9-Jul-09 5:42
molesworth9-Jul-09 5:42 
GeneralRe: !(How to best use a try catch block) Pin
singh.iz.king9-Jul-09 12:58
singh.iz.king9-Jul-09 12:58 
GeneralRe: !(How to best use a try catch block) Pin
0x3c09-Jul-09 5:42
0x3c09-Jul-09 5:42 
GeneralRe: !(How to best use a try catch block) Pin
supercat99-Jul-09 10:40
supercat99-Jul-09 10:40 
GeneralRe: !(How to best use a try catch block) Pin
harold aptroot9-Jul-09 11:01
harold aptroot9-Jul-09 11:01 
GeneralRe: !(How to best use a try catch block) Pin
supercat910-Jul-09 6:09
supercat910-Jul-09 6:09 
GeneralRe: !(How to best use a try catch block) Pin
harold aptroot10-Jul-09 6:24
harold aptroot10-Jul-09 6:24 
GeneralRe: !(How to best use a try catch block) Pin
supercat910-Jul-09 9:36
supercat910-Jul-09 9:36 
GeneralRe: !(How to best use a try catch block) Pin
Thomas Weller10-Jul-09 0:29
Thomas Weller10-Jul-09 0:29 
GeneralRe: !(How to best use a try catch block) Pin
singh.iz.king10-Jul-09 3:43
singh.iz.king10-Jul-09 3:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.