I have an Access form with a treeview (class MSComctlLib.TreeCtrl.2) on it. The font of the treeview has been set to "Courier New" which is OK for my purposes.
I now wish to insert a character from this font into the text string value of a particular node; I checked that the unicode U+2665 (heart symbol, hex notation) is available in Courier New, so I thought the following would be OK.
caption = Replace(Tags.Fields("Description"), "\H", ChrW(&H2665))
But the treeview displays question marks instead of the expected heart symbols.
What is wrong here? Is there some treeview property to be set - enabling unicode char specification? Or can this not be done?