|
自分で少し触っていたところ
下記のような感じでなんとか表現できました。
グループフッター1に
テキストボックスを配置してコントロースソースに
「=Futta()」を設定しています。
Dim flg As Integer
Dim pagesu As Integer
Dim brk As Variant
Private Sub Report_Open(Cancel As Integer)
Me.改ページ.Visible = False
End Sub
Private Sub グループフッター1_Format(Cancel As Integer, FormatCount As Integer)
If Me.pages <> 0 Then
Me.改ページ.Visible = (pagesu Mod 2 = 1)
End If
End Sub
Private Sub ページヘッダーセクション_Format(Cancel As Integer, FormatCount As Integer)
pagesu = pagesu + 1
If Me.区分コード.Value <> brk Then
pagesu = 1
brk = Me.区分コード.Value
End If
If Me.pages > 0 Then
If Me.改ページ.Visible Then
Me.改ページ.Visible = False
If flg = 1 And (pagesu Mod 2 = 0) Then
Cancel = True
Me.ページフッターセクション.Visible = False
End If
Else
Me.ページフッターセクション.Visible = True
End If
Me.ページ = pagesu
End If
flg = 0
End Sub
Function Futta()
flg = 1
End Function
|
|