What is the difference, if any, between:
VB Code:
  1. Public Static Function Woof()
  2. Dim lngID           As Long
  3. Dim strUsername     As String
  4.     'Code here
  5. End Function
and
VB Code:
  1. Public Function Woof()
  2. Static lngID        As Long
  3. Static strUsername  As String
  4.     'Code here
  5. End Function
Is there a difference is memory used for storing data, is one more economical than the other, or are they absolutely identical?
They both have EXACTALLY the same end result...

Woka