Is there a way to measure the the amount of a string that will fit into a printed area without using the graphics object?
This is the only way i could find to do it:
Graphics instance = this.CreateGraphics();
instance.MeasureString(text, f, printArea1, StringFormat.GenericDefault,
out end, out lines);
I am using .net 2.0 and c# but I don't mind VB code.