VB.NET, ListView, Font: not work in all machines

stevie

New member
Joined
Dec 8, 2005
Messages
1
Programming Experience
5-10
Folks,

Here is my problem:
I build a application with listview, change the font to wingdings ( .subitems.item(n).font = new system.drawing.font("Wingdings", 12, FontStyle.Regular ), change the UseItemStyleForSubItems to false, and assigning characters: CHR(251) and CHR(252) by: .SubItems.Add( CHR(251) ) and .SubItems.Add( CHR(252) ). It works in the development machine, showing the wingdings "check" and "cross" signs. And, it works in another machine, with .NET Framework 1.1 installed.

However, when i try to run the same application (copying the exe) in another 2 machines, it can't show the check and cross signs at all. Leaving the cells blank. All 4 machines are installed with MS Word, with wingdings font installed, and .NET Framework 1.1, XP. What could be wrong? Anything need to configure?

Thanks in advance !!!
 
Back
Top