Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 532 Bytes

File metadata and controls

19 lines (10 loc) · 532 Bytes

Simple example 2

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.

Simple example 2