Private Sub CommandButton1_Click()
Dim LastRow As Long
LastRow = Worksheets("DADOS").Cells(Worksheets("DADOS").Rows.Count, 1).End(xlUp).Row + 1
Cells(LastRow, 1).Value = Me.txtdesignação
Cells(LastRow, 2).Value = Me.ComboBox6
Cells(LastRow, 3).Value = Me.CheckBox1
Cells(LastRow, 4).Value = Me.ComboBox7
Cells(LastRow, 5).Value = Me.txtdata
Cells(LastRow, 6).Value = Me.Txtoperador
Cells(LastRow, 7).Value = Me.txtespessura_nominal
Cells(LastRow, 8).Value = Me.txtcomprimento_nominal
Cells(LastRow, 9).Value = Me.ComboBox1
Cells(LastRow, 10).Value = Me.ComboBox2
Cells(LastRow, 11).Value = Me.TXTATADO
Cells(LastRow, 12).Value = Me.txtlote_cliente
Cells(LastRow, 13).Value = Me.Txtdiametro1
Cells(LastRow, 14).Value = Me.txtdiametro2
Cells(LastRow, 15).Value = Me.txtdiametro3
Cells(LastRow, 16).Value = Me.txtdiametro4
Cells(LastRow, 17).Value = Me.txtespessura
Cells(LastRow, 18).Value = Me.txtcomprimento
Cells(LastRow, 19).Value = Me.txtretitude
Cells(LastRow, 20).Value = Me.ToggleButton10
End Sub