Click here to Skip to main content
15,890,512 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: VB 6 Pin
OriginalGriff1-Sep-10 8:13
mveOriginalGriff1-Sep-10 8:13 
RantRe: VB 6 Pin
Thomas Eyde4-Sep-10 10:38
Thomas Eyde4-Sep-10 10:38 
GeneralRe: VB 6 Pin
OriginalGriff4-Sep-10 10:43
mveOriginalGriff4-Sep-10 10:43 
GeneralRe: VB 6 Pin
Thomas Eyde4-Sep-10 13:49
Thomas Eyde4-Sep-10 13:49 
GeneralRe: VB 6 Pin
OriginalGriff4-Sep-10 21:25
mveOriginalGriff4-Sep-10 21:25 
GeneralRe: VB 6 Pin
Richard A. Dalton6-Sep-10 1:43
Richard A. Dalton6-Sep-10 1:43 
GeneralRe: VB 6 Pin
OriginalGriff6-Sep-10 1:58
mveOriginalGriff6-Sep-10 1:58 
GeneralRe: VB 6 Pin
Richard A. Dalton6-Sep-10 2:17
Richard A. Dalton6-Sep-10 2:17 
OriginalGriff wrote:
It's not the same: On Error Resume Next causes execution to continue from the statement after the one that cased the error. An empty catch block will continue from the statement following the catch.


The empty try..catch is infinitely worse than On Error Resume Next.

On Error Resume Next leaves the flow of the code relatively untouched. If the Resume next is a bad idea the program flow will continue and will blow up some time later, but you can have some idea where the problem originated.

Of you swallow an exception at a high level and that exception originated at a low level, you are at a complete loss. Not to mention the fact that there could be any number of Empty try catch swallows in between.

But like you said the empty catch clause can be justified and so we don't slam an entire language because you can do it.

Guess what, classic VB didn't have Try..Catch. It had what it had. And like empty Catch blocks if you abused what it had you could write horrible code.

VB.Net and C# have better error handling mechanisms than classic VB....SHOCKER!!!!

If you worked with what you had you could use things like On Error Resume Next to write good code that could be understood.

There are many credible criticisms of classic VB, most of which seem to completely miss the point that VB was what it was and came from where it came.

It's like blaming your 1980 Toyota for you constantly getting lost because your 1980 Toyota didn't come with built in Sat Nav.

-Rd
GeneralRe: VB 6 Pin
leonej_dt1-Sep-10 12:49
leonej_dt1-Sep-10 12:49 
GeneralRe: VB 6 Pin
Kirk21129-Sep-10 8:41
Kirk21129-Sep-10 8:41 
GeneralRe: VB 6 PinPopular
xperroni1-Sep-10 4:24
xperroni1-Sep-10 4:24 
GeneralRe: VB 6 Pin
Fabio Franco1-Sep-10 5:05
professionalFabio Franco1-Sep-10 5:05 
GeneralRe: VB 6 Pin
Bigdeak10-Sep-10 1:56
Bigdeak10-Sep-10 1:56 
GeneralRe: VB 6 Pin
Fabio Franco10-Sep-10 2:03
professionalFabio Franco10-Sep-10 2:03 
GeneralRe: VB 6 Pin
M i s t e r L i s t e r1-Sep-10 5:54
M i s t e r L i s t e r1-Sep-10 5:54 
GeneralRe: VB 6 Pin
bwallan1-Sep-10 8:08
bwallan1-Sep-10 8:08 
GeneralRe: VB 6 Pin
JasonPSage1-Sep-10 8:37
JasonPSage1-Sep-10 8:37 
GeneralRe: VB 6 Pin
Max Peck2-Sep-10 4:05
Max Peck2-Sep-10 4:05 
GeneralRe: VB 6 Pin
Matt McGuire1-Sep-10 13:15
professionalMatt McGuire1-Sep-10 13:15 
GeneralRe: VB 6 Pin
Lutosław1-Sep-10 20:25
Lutosław1-Sep-10 20:25 
GeneralRe: VB 6 Pin
cwp423-Sep-10 1:38
cwp423-Sep-10 1:38 
General558 Lines Of QuickBasic Glory PinPopular
AspDotNetDev25-Aug-10 21:29
protectorAspDotNetDev25-Aug-10 21:29 
GeneralRe: 558 Lines Of QuickBasic Glory Pin
Kevin Drzycimski25-Aug-10 22:22
Kevin Drzycimski25-Aug-10 22:22 
GeneralRe: 558 Lines Of QuickBasic Glory Pin
AspDotNetDev26-Aug-10 10:48
protectorAspDotNetDev26-Aug-10 10:48 
GeneralRe: 558 Lines Of QuickBasic Glory Pin
CDP180226-Aug-10 0:50
CDP180226-Aug-10 0:50 

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.