In the previous example the forms were not properly ordered. This example shows you how to organize the forms using the variable "self.formset".
#Add this line to the constructor and you will be able to organize the forms.
self.formset = ['_firstname','_middlename','_lastname', '_fullname', '_button', ' ']Notes: You can you use the value ' ' in the self.formset to force the Windows Form to give a blank space on the window.
