I want to create a linked list of forms. I am using this code to create the form

Code:
ChildForm = new TChildForm(this);
For the linked list I know I need a structure:

Pointer to Childform
Pointer to next node

I need to know which part do I assign to the pointer to childform.

Thanks