Office中国论坛/Access中国论坛

标题: [挑战]不满一页用空行代替,如果没有数据可不可以全部用空行代替? [打印本页]

作者: zyz218    时间: 2007-9-20 11:28
标题: [挑战]不满一页用空行代替,如果没有数据可不可以全部用空行代替?
file:///d:/000.jpg不满一页空行代替代码如下:
Option Compare Database
Dim lngA As Long
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
    lngA = lngA + 1
    Dim lngRows As Long
    Dim intAllRows As Integer      '包括空行,完整的行数。
    Dim objCtl As Control
    lngRows = 39        '这个行数请调整到和你报表的行数减1。
   
    If intAllRows = 0 Then
        If txtTotGrp Mod lngRows = 0 Then
            intAllRows = txtTotGrp
        Else
            intAllRows = (Fix(txtTotGrp / lngRows) + 1) * lngRows
        End If
    End If
    Debug.Print intAllRows
   
    If lngA <= txtTotGrp Then
        For Each objCtl In Me.Section(0).Controls
            If objCtl.ControlType = acTextBox Then
            With objCtl
                .Visible = True
            End With
            End If
        Next objCtl
    Else
        If lngA = intAllRows + 1 Then lngA = 1
        For Each objCtl In Me.Section(0).Controls
            If objCtl.ControlType = acTextBox Then
            With objCtl
                .Visible = False
            End With
            End If
        Next objCtl
       '设置第一条记录要显示出来
        If lngA = 1 Then
            For Each objCtl In Me.Section(0).Controls
                If objCtl.ControlType = acTextBox Then
                With objCtl
                    .Visible = True
               End With
               End If
            Next objCtl
        End If
    End If
   
    '以下设定是否进入下一节
    If txtTotGrp < intAllRows Then
        If lngA < txtTotGrp Then
            Me.NextRecord = True
        ElseIf (lngA >= txtTotGrp And lngA < intAllRows) Then
            Me.NextRecord = False
        Else
            Me.NextRecord = True
        End If
    Else
        Me.NextRecord = True
    End If
End Sub
主体里有个叫txtTotGrp的文本框,它的数据来源=count(*),主体中所有字段都穿着一层标签外衣,外衣的border style=solid

[ 本帖最后由 zyz218 于 2007-9-20 16:35 编辑 ]
作者: zyz218    时间: 2007-9-20 16:34
没人顶,自已来,不然沉得太快了!是不是这个问题没办法解决?
作者: andymark    时间: 2007-9-20 17:23
把例子传上来
作者: goto2008    时间: 2007-9-20 21:23
天呀....传例子,行不?
作者: poly    时间: 2007-9-20 21:49
    在报表里设置下就基本可以搞定了
作者: zyz218    时间: 2007-9-21 19:01
请见附件!我在论坛没找到答案,我自已也搞不定!
作者: andymark    时间: 2007-9-22 01:10
修改了报表的查询语句,建议不用序号显示




欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/) Powered by Discuz! X3.3