Has anyone some funny comments to share that they wrote or saw in other people's source code? Perhaps this has been covered here in another thread, but a search didnot yield it.
A few of mine :
Code:
' did the plugin find any files? if not ..WHAT THE HELL ARE WE DOING HERE
At this point, obviously, the program should not be executing here.
Code:
' okay, have there any Temporary files been created?
' If so, obliterate them please
..right before the seek and destroy of temp files.
Like a god booming in your ear, so you don't forget...
Code:
news = u - ch ' if this is minus then we have a problem
Meaning: if this is negative ..
And my VB error code intercepts would almost alway be something like this:
Code:
On Error GoTo Hell
<code>
Hell:
<error handling>
or
Code:
On Error GoTo Doctor
<code>
Doctor:
<error handling>

|