If I want to display the size of every Form in my Project in the Form\'s Title what will be the best approach?
I don\'t want to manually put a
You can use Automation as @Jimi suggested.
You can use My.Application.OpenForms to iterate throught all opened forms, but it will not help when new form is opened.
You can create some ReportSizeForm class that inherits System.Forms.Form. And change inheritance of your forms from regular System.Windows.Forms.Form to your ReportSizeForm.