In the form load event

VB Code:
  1. 'new instant of person
  2.     Set m_objPerson = New clsPerson
  3.     With m_objPerson
  4.         .Age = 30
  5.         .Name = "A Person"
  6.         .Sex = "Male"
  7.     End With
  8.  
  9.     m_colPerson.Add m_objPerson

Hope this helps!!