I'm working on a DLL which will have strings passed to it.
Initially the DLL accepted a string long pointer but I've been changing it to basic strings, as in:
Old Way
New Way
In either way I need to know if the string is valid. Any suggestions.
Pat
Initially the DLL accepted a string long pointer but I've been changing it to basic strings, as in:
Old Way
Code:
DbSaveData( lpStringData as String Pointer )
Code:
DbSaveData( StringData as String )
Pat
Comment