Forms Delphi

Title: Get number of MDIChild forms
Use MDIChildCount property of Form. This property contains number of open MDI child forms.
with Form1 do
Caption:='Count of MDIChild forms is '+
IntToStr(MDIChildCount);