tags:

views:

416

answers:

2

I need to install a font on a client machine when my program is started and I know I need to use PInvoke to accomplish this but I am having trouble understanding what exactly PInvoke does and I don't really understand the example HERE. Would someone be able to dumb this down to a newbie level?

Thanks!

+2  A: 

Why not just use PrivateFontCollection?

leppie
Thanks I will give these a try.
Nathan
+1  A: 

This article might be a better approach to what you're trying to do:

http://www.emoreau.com/Entries/Articles/2007/10/Embedding-a-font-into-an-application.aspx

MusiGenesis