December 18, 2003
'Miscellanous consts
Public Const EMPTY_STRING = ""
Public Const HTML_COMMENT_BEGIN = ""
When was the last time the value for the empty string changed?
12:54 PM
'Miscellanous consts
Public Const EMPTY_STRING = ""
Public Const HTML_COMMENT_BEGIN = ""
When was the last time the value for the empty string changed?
12:54 PM
validate_and_update_work_order()
validate_and_add_work_order()
How about a common validate fxn?
This, in my opinion, is a gross misallocation of programmer time. Nobody wants to spend time maintaining comments. A developer friend of mine worked the support/development line at a small company. One of his calls one day was complaining about how he couldn't get the software to send something via email. After digging through the code, he found the following structure: if continue=false then
<% If IsNull(item) Then %>
.
<% else %>
<%=item%>
<% end if %>
01:11 PM
if faxTransmission then
// Fax transmission
...
...
[10K lines of code]
else if emailTransmission
// TODO when there is time
October 02, 2003
if streetname = "*.*" then
continue = true
else
continue = false
...
07:38 PM
exit function
end if