Grazie della disponibiltà.

Il codice del modulo è quello già postato:
codice:
Module Matrice_CV
    Public ArrTxt(1) As TextBox
    Sub Matrix()
        ArrTxt(0) = MioForm.comune
        ArrTxt(1) = MioForm.lavori
    End Sub
End Module
Poi ho un form MioForm (che contiene 2 textbox chiamate "comune" e "lavori") dove, associato al click di un button ho:

codice:
Private Sub Mostra_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Mostra.Click
        
ArrTxt(0).Text = "Milano"
ArrTxt(1).Text = "Costrizione"

 End Sub
Se clicco sul button, il debug punta a ArrTxt(0).Text = "Milano" con un errore: "NullReferenceException was unhandled

Non ho altro codice.