Link to home
Start Free TrialLog in
Avatar of Mike Eghtebas
Mike EghtebasFlag for United States of America

asked on

Copyright symbol... How to add

In access 2007, I want to include copyright symbol (small circle with letter c inside).

"Application Title" in access options interface is where I need to add following the name of my application in it?

How could I do this?

Thank you.
Avatar of Patrick Matthews
Patrick Matthews
Flag of United States of America image

Hello Mike,

Have you tried copying that symbol into the clipboard from the Windows character map, and then just using
Ctrl+V in the App Title textbox?

Regards,

Patrick
Avatar of Mike Eghtebas

ASKER

I just tried but it doesn't work. It shows is a vertical rectangular, empty inside.

Also I tried chr(169) it just shows chr(169) not the symbol.

If you know how to update this boxy via code, let me know then we can use chr(169) in the string.
ASKER CERTIFIED SOLUTION
Avatar of ☠ MASQ ☠
☠ MASQ ☠

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
use this to change the application title

CurrentDb.Properties!AppTitle = "MyApplication" & Chr(169)
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial