What is the Difference between the Following Statements :
txtName = ""
txtName = VbNullString
Which is the Better way to Follow & Why ?
Printable View
What is the Difference between the Following Statements :
txtName = ""
txtName = VbNullString
Which is the Better way to Follow & Why ?
This might be useful for you:
http://www.codeguru.com/forum/showthread.php?t=310047
Regards,
Thx Bornish ..
Interesting Link ..
Suresh
vbNullString is slightly faster than "", since vbNullString is not actually a string, but a constant set to 0 bytes, whereas "" is a string (consuming at least 4-6 bytes for just existing).