Con questo codice son riuscito grosso modo a fare ciō che volevo. L'unico problema č che il pič di pagina mi rimane sempre settato col Times New Roman a 12 e non riesco a cambiarne in nessun modo la dimensione. Sapete dirmi la sintassi giusta? Grazie. 
codice:
Dim rngFooter As Range
Set rngFooter = objWord.ActiveDocument.Sections(1).Footers(wdHeaderFooterPrimary).Range
With rngFooter
.Text = "Pagina "
.Collapse wdCollapseEnd
.Move unit:=wdCharacter, Count:=1
.Fields.Add Range:=rngFooter, Type:=wdFieldPage
.Collapse wdCollapseEnd
.Move unit:=wdCharacter, Count:=1
.Text = "/"
.Collapse wdCollapseEnd
.Move unit:=wdCharacter, Count:=1
.Fields.Add Range:=rngFooter, Type:=wdFieldNumPages
.Move unit:=wdCharacter, Count:=1
'nome_cognome č la mia variabile in cui concateno i due dati dal recordset
.Text = " Curriculum Vitae di" & vbCrLf & nome_cognome & vbTab
.Collapse wdCollapseEnd
.Move unit:=wdCharacter, Count:=1
'scrivendo la riga sottostante (senza commentarla) non cambia nulla
'.Font.Size = 5
End With