Missing Symbol font in .NET

W

Warwick

Hi,
Can anyone tell me why the 'Symbol' font doesn't exist within my .NET framework environment?
It is definitely installed on the computer, I can access it in word or using a RichTextBox control but when I enumerate fonts installed within ..NET using the following code then it isn't listed.
foreach (FontFamily ff in System.Drawing.FontFamily.Families) {listBox1.Items.Add(ff.Name);}

Is there any way to install it?

Cheers,
Warwick
 
W

Warwick

Further investigation suggests that my PC doesn't have a type type Symbol font installed.
Looking in my Windows\Fonts folder there is a Symbol.fon file but no Symbol.ttf
I assume that .NET only uses true type fonts.


Hi,
Can anyone tell me why the 'Symbol' font doesn't exist within my .NET framework environment?
It is definitely installed on the computer, I can access it in word or using a RichTextBox control but when I enumerate fonts installed within ..NET using the following code then it isn't listed.
foreach (FontFamily ff in System.Drawing.FontFamily.Families) {listBox1.Items.Add(ff.Name);}

Is there any way to install it?

Cheers,
Warwick
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top