I\'m doing some work on a legacy application, and my VB6 skills aren\'t that great. I need to check whether a String field has been initialized and set to something other th
The most optimized and safe way to meet your 3 requirements is as follows:
If LenB(myObj.Str) = 0 Then Debug.Print "String is empty/null/not initialized" Else Debug.Print "Not Empty"