Hello again...

When I load my application, I am setting "myFont" to:

myFont = new Font("NATURALBORN" , 14 , FontStyle.Bold);

Now what I would like to do is "read" my font from a text file. Something like this:

The text saved to my text file (myFont.ToString()) = ...

[Font: Name=NATURALBORN, Size=14, Units=3, GdiCharSet=1, GdiVerticalFont=False]

So I need to do something like...

myFont = new Font(sr.readLine());

Obviously, that will not work unless I parse it out some how. How?

Thanks!