
How to make first letter of textbox appear only
Precisely, which is why if you used your code as the controlsource directly
it wouldn't work because if one of the controls is Null then you will get
#error as the result, as you are trying to assign a null to a string, with
Left this doesn't happen.
Your solution is correct in code, I'm not disputing that, I'm saying that my
solution works _as_ the control source.
So "Stand by your code" (is that a song or something <g>) but please try
reading my posting a bit more carefully before jumping in.
Quote:
>>Or as the control source for the control
>>=Left([Textbox1],1) & "; " & [Textbox2]
>>(Note: Left not Left$)
>Left returns a Variant datatype, Left$ returns a String Data Type.
>I stand by my code :)
>Steve