Creating/Managing multiple forms in AutoIt3  Part 1  When creating multiple forms in AutoIt, there is no provision for creating a custom FORM data type (like in Visual Basic) and there is no way to access the controls on the form using dot (.) notation. For eg. If you have a text box: txtYourName on a form: frmMain, Visual Basic allows you to access the text in the text box using the dot notation: 	 		sName = frmMain.txtYourName  An obvious advantage of having a FORM data type is that its possib