PHVs suggestion, is the fastest I've encountered on several tests, though for form controls fractions of milliseconds aren't really that interesting. PHVs suggestion also has one more advantage - in some events, like for instance the on change event of controls, there's a possibility of the control only containing a space, which PHVs suggestion traps for, and NZ doesn't.
However, in the on change event of controls, testing the .Value property, as is done here (.Value is the default property of controls), is perhaps not the most interesting property, as this doesn't change until whatever changes are performed are saved to the control, perhaps test then .Text property of the control in stead, or use another event, for instance the After Update event of the control.
Roy-Vidar