Torna al Thread
Private Sub FlowLayoutPanel1_Paint(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles FlowLayoutPanel1.Paint
If My.Settings.temporaneolavoro = "" Then
MsgBox("TA_DAN!", MsgBoxStyle.OkOnly)
Else
Dim filescontati As String
Dim bimbo = Directory.GetFiles(My.Settings.temporaneolavoro)
For Each filescontati In bimbo
FlowLayoutPanel1.Controls.Add(New TextBox)
Next
End If
End Sub