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




Reply With Quote