Si
Ho trovato pure questo codice su Internet:
Option Compare Database
Option Explicit
Dim GrpArrayPage(), GrpArrayPages()
Dim GrpNameCurrent As Variant, GrpNamePrevious As Variant
Dim GrpPage As Integer, GrpPages As Integer
Private Sub SezionePièDiPaginaPagina_Format(Cancel As Integer, FormatCount As Integer)
Dim i As Integer
If Me.Pages = 0 Then
ReDim Preserve GrpArrayPage(Me.Page + 1)
ReDim Preserve GrpArrayPages(Me.Page + 1)
GrpNameCurrent = Me.Denominazione
If GrpNameCurrent = GrpNamePrevious Then
GrpArrayPage(Me.Page) = GrpArrayPage(Me.Page - 1) + 1
GrpPages = GrpArrayPage(Me.Page)
For i = Me.Page - ((GrpPages) - 1) To Me.Page
GrpArrayPages(i) = GrpPages
Next i
Else
GrpPage = 1
GrpArrayPage(Me.Page) = GrpPage
GrpArrayPages(Me.Page) = GrpPage
End If
Else
Me.ctlGrpPages = "Pagina " & GrpArrayPage(Me.Page) & " di " & GrpArrayPages(Me.Page)
End If
GrpNamePrevious = GrpNameCurrent
End Sub
Se metto il controllo [ctlGrpPages] non associato, il report si apre ma non vedo le pagine. Se ci scrivo ad esempio =[Pagine] come suggerito in quel sito mi da errore. "Impossibile assegnare un valore all'oggetto" e mi evidenzia proprio la riga:
Me.ctlGrpPages = "Pagina " & GrpArrayPage(Me.Page) & " di " & GrpArrayPages(Me.Page)
Ovviamente il sito era tutto in inglese