Home |
Search |
Today's Posts |
#1
Posted to microsoft.public.excel.programming
|
|||
|
|||
How to include meta characters in forms
Good morning.
How do I add meta characters (such as a copyright symbol) to a label on a form? Anything I try takes the literal text from the caption field, not the CHR code. Any suggestions? Art |
#2
Posted to microsoft.public.excel.programming
|
|||
|
|||
How to include meta characters in forms
Hi Art,
Am Fri, 21 Jul 2017 04:05:29 -0700 (PDT) schrieb : How do I add meta characters (such as a copyright symbol) to a label on a form? Anything I try takes the literal text from the caption field, not the CHR code. do it in UserForm_Initialize event Private Sub UserForm_Initialize() Me.Label1.Caption = "Test " & Chr(169) End Sub: Regards Claus B. -- Windows10 Office 2016 |
#3
Posted to microsoft.public.excel.programming
|
|||
|
|||
How to include meta characters in forms
On Friday, July 21, 2017 at 7:40:19 AM UTC-4, Claus Busch wrote:
Claus, it works! thanks Art |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Forum | |||
Creating a formula to include results from forms | Excel Discussion (Misc queries) | |||
Error '' is not a valid name. Make sure that it does not include invalid characters or punctuation and that it is not too long. | Excel Programming | |||
Formulas that include alpha and numeric characters | Excel Worksheet Functions | |||
Importing Ascii file to Excell won't include Null Characters | Excel Discussion (Misc queries) | |||
how to include special characters in a formula? | Excel Programming |