アクセス初心者
2023/05/29 (月) 17:15:21
fe6cd@a220e
迅速なご回答ありがとうございます。
試みてみましたが、依然としてエラーが表示されました。
何度もご対応いただき申し訳ございません。
Option Compare Database
Option Explicit
Private Ruikei As Long
Private Sub ページヘッダーセクション_Format(Cancel As Integer, FormatCount As Integer)
Ruikei = 0
End Sub
Private Sub 詳細_Format(Cancel As Integer, FormatCount As Integer)
If FormatCount = 1 Then Ruikei = Ruikei + Me!積載
Me!累計 = Ruikei
If Ruikei > 400000000 Then
Me!改ページ.Visible = True
Else
Me!改ページ.Visible = False
End If
MsgBox "Finish"
End Sub
通報 ...