Dim Layout As SKLayout
Layout = Layout.Initialize(Me, "body" )
Layout.AddFlexColumns(1,12,12,12, "center" )
Layout.LastRow.Column(1).MarginTop = "20px"
Layout.LastRow.Column(1).MarginBottom = "20px"
For i=1 To 5
Dim name1 As String=i
Dim event1 As String="txtname"&i
Dim txtbox As SKTextBox =Layout.LastRow.Column(1).Add.TextBox( name1, event1, "" , "" , True, "Type some text..." , "label" , "" , "" , "text" , False)
Next