I need to trasform this ADO code for DAO, i spossible?
tks.

Code:
...
Set objCommand = New ADODB.Command
    With objCommand
        .ActiveConnection = CONN
        .CommandText = "AGG_ALBERO1"
        .CommandType = adCmdStoredProc
        .Prepared = True
        .Execute , , adExecuteNoRecords
        Set objCommand = Nothing
    End With
...