I have a small form that displays some progress information. Very rarely I have to show a rather long message and I want to be able to resize this form when needed so th
How about this:
Size stringsize = graphics.MeasureString("hello", myFont);
(Here is the MSDN link.)