codice:
Private Sub Command2_Click()
Dim i As Integer
Dim Sposta As Integer
S = 1200 
i = 1

Call connetti

Rs.Open "SELECT * FROM u_89", Cn


Do While Not Rs.EOF

Load Text1(i)
Text1(i).Move S , 2000, 800, 350
Text1(i).MaxLength = 10
Text1(i).Visible = True
    

    If Rs.State <> 0 Then 'se non si sono verificati errori
        If Not (Rs.EOF And Rs.BOF) Then 'se il recordset non è vuoto
            Text1(i).Text = Rs("CodForn")
        End If
    Else
        MsgBox "Errore durante l'apertura della tabella", vbCritical
    End If
    i = i + 1
    S = S + 10
    

Loop

Cn.Close
Set Cn = Nothing
cambiando un valore non appare comunque niente