Problem: String to object Font: This works fine.
FontConverter ^ fc = gcnew FontConverter();
String ^ savedFont = fc->ConvertToString(myFont);
But when I try to go back I get the error:
myFont = fc->ConvertFromString(savedFont);
Cannot convert from 'System::Object' to 'System::Drawing::Font'
What's wrong?
Thanks Frousouna Man
'