When filling out a listview with rows, I've found that if the values I'm loading contain an ampersand, it is not shown but treated as an underline for the next character. See attachment for how "AT&T" is treated. Is there some API call to disable that feature for a control?
Rick Kelly
I got it figured out. All my app listviews are ownerdrawn and I just needed to add %DT_NOPREFIX to my DrawText options.
Rick Kelly
You can also escape it with a 2nd &, so AT&T= AT&&T. Helps if you actually need to underline letters too.