Click here to Skip to main content
15,886,058 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.

 
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 
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 
Just came across a class which has tens of such properties. These properties are called by other classes and by other properties / methods of this class!!! Oh! and also look how the property name says total, but is actually returning an average OMG | :OMG:

public double CrappyTotal
{
        double CrappyTotal = 0; // notice the name of the variable is the same as the property
	try
	{
		CrappyTotal = this.SomeItem.Details[0].Value;
		CrappyTotal += this.SomeItem.Details[1].Value;
		CrappyTotal += this.SomeItem.Details[2].Value;
		CrappyTotal += this.SomeItem.Details[3].Value;
		CrappyTotal = CrappyTotal / 4;
	}
	catch
	{
		CrappyTotal = -1;
	}
	return CrappyTotal;
}


modified on Wednesday, July 8, 2009 11:35 PM

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 
GeneralRe: !(How to best use a try catch block) Pin
supercat910-Jul-09 6:02
supercat910-Jul-09 6:02 
GeneralRe: !(How to best use a try catch block) Pin
Thomas Weller10-Jul-09 18:46
Thomas Weller10-Jul-09 18:46 

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.