Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/reporting-services/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Reporting services 在Reporting Services中,预览中不显示表详细信息_Reporting Services - Fatal编程技术网

Reporting services 在Reporting Services中,预览中不显示表详细信息

Reporting services 在Reporting Services中,预览中不显示表详细信息,reporting-services,Reporting Services,我在报告中放入一个表,第一列中有标签,第二列中有映射,但当我单击预览(在IDE中)时,该表不会显示 “初始可见性”设置为“可见” 我使用的是VS2005团队资源管理器版本(从SQLServer2005BI打开) 这里是一个示例XML(代码),如果这可能有所帮助的话 <TableRow> <TableCells> <TableCell> <ReportItems>

我在报告中放入一个表,第一列中有标签,第二列中有映射,但当我单击预览(在IDE中)时,该表不会显示

“初始可见性”设置为“可见”

我使用的是VS2005团队资源管理器版本(从SQLServer2005BI打开)

这里是一个示例XML(代码),如果这可能有所帮助的话

         <TableRow>
          <TableCells>
            <TableCell>
              <ReportItems>
                <Textbox Name="labelRID">
                  <Style>
                    <FontFamily>Times New Roman</FontFamily>
                    <FontSize>12pt</FontSize>
                    <TextAlign>Right</TextAlign>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                    <PaddingBottom>2pt</PaddingBottom>
                  </Style>
                  <ZIndex>7</ZIndex>
                  <CanGrow>true</CanGrow>
                  <Value>RID:</Value>
                </Textbox>
              </ReportItems>
            </TableCell>
            <TableCell>
              <ReportItems>
                <Textbox Name="textboxRID">
                  <Style>
                    <FontFamily>Times New Roman</FontFamily>
                    <FontSize>12pt</FontSize>
                    <TextAlign>Left</TextAlign>
                    <PaddingLeft>2pt</PaddingLeft>
                    <PaddingRight>2pt</PaddingRight>
                    <PaddingTop>2pt</PaddingTop>
                    <PaddingBottom>2pt</PaddingBottom>
                  </Style>
                  <ZIndex>6</ZIndex>
                  <CanGrow>true</CanGrow>
                  <Value>=Fields!rid.Value</Value>
                </Textbox>
              </ReportItems>
            </TableCell>
          </TableCells>
          <Height>0.25in</Height>
        </TableRow>

新罗马时代
12磅
赖特
2吨
2吨
2吨
2吨
7.
真的
摆脱:
新罗马时代
12磅
左边
2吨
2吨
2吨
2吨
6.
真的
=字段!摆脱价值
0.25英寸

多亏了微软的论坛,我的问题就解决了

“选择Table并按“F4”,在那里您可以看到Data选项卡,其中有一个名为No Row的属性。当数据集没有返回数据时,您可以打印文本。例如‘No Data Available’。”

所以基本上,因为我现在并没有数据(客户端还并没有提供任何数据),所以带标签的表不会显示出来