I'm adding a field value (Addressee) to some text in a Label...
Label.Caption = "Initial text " & [Addressee]
Problem: If the name contains an ampersand, like "Joe & Sally" the "&" shows up as an underscore.
Tried to escape it... no joy
Tried "Joe " & Chr(38) & " Sally"... no joy
I can switch to a textbox with a background to match the form header (where it sets) and TabStop= No ... but just want to know if there's a work around for the Label issue??
Thanks
Label.Caption = "Initial text " & [Addressee]
Problem: If the name contains an ampersand, like "Joe & Sally" the "&" shows up as an underscore.
Tried to escape it... no joy
Tried "Joe " & Chr(38) & " Sally"... no joy
I can switch to a textbox with a background to match the form header (where it sets) and TabStop= No ... but just want to know if there's a work around for the Label issue??
Thanks