Not seeing any FireFox Fixes...

I've patched to VS2005 SP1, and loaded my "reports" project, where I have a few reports that use the ReportViewer Web control. This project has the dll's in the bin folder, so I copied the Web and Common dll's from Program Files\VS 8.0\ReportViewer folder, and the ProcessingObject dll from the Windows\Assembly\GAC_MSIL folder (as I had before) to update the project.

Running the reports, the Matrix still "collapses" on itself and the Table sill shows missing borders and broken fonts. There wasn't a noticeable speed increase in rendering either. This is FireFox 2.0.

We have a development server that has never had the ReportViewer.exe distributional installed, it loads everything from Bin. I updated this server's Bin folder with the new dll's, restarted IIS and got the same result.

The file versions of the dlls:

Common.dll - 8.0.50727.762
WebForms.dll - 8.0.50727.762
ProcessingObjectModel.dll - 8.0.50727.42

Mike


Answer this question

Not seeing any FireFox Fixes...

  • jibotang

    The reports are pretty detailed, but the problem is easy to reproduce. Create a report with a matrix. Add a dynamic col and row group, then add a few static groups to each as well. Have enough data to get about 10 cols and rows each way (there are the dynamic groups, the actual table will have hundreds of rows after building the static groups).

    Because the toolbar prevents size to go beyond the screen even in IE, it's turned off:

    <rsweb:reportviewer id="ReportViewer1" runat="server" asyncrendering="False" sizetoreportcontent="True" showtoolbar="False">

    You get the same issues previously reported: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=367069&SiteID=1

    (incorrect styling of the first column, width not being set). Results are the same with large tables

    Here is one rdlc, that generates a table with the above problems:

    <Body>
    <ReportItems>
    <Table Name="table1">
    <DataSetName>Orders_WeeklyStatus</DataSetName>
    <Width>29.5in</Width>
    <Details>
    <TableRows>
    <TableRow>
    <TableCells>
    <TableCell>
    <ReportItems>
    <Textbox Name="MIN_DATE">
    <rd:DefaultName>MIN_DATE</rd:DefaultName>
    <ZIndex>35</ZIndex>
    <Style>
    <BorderStyle>
    <Left>Solid</Left>
    <Right>None</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Left>1pt</Left>
    </BorderWidth>
    <Format>MMM d</Format>
    <BorderColor>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Format(Fields!MIN_DATE.Value,"MMM d") + " - "</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox47">
    <rd:DefaultName>textbox47</rd:DefaultName>
    <ZIndex>34</ZIndex>
    <Style>
    <BorderStyle>
    <Left>None</Left>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Left</TextAlign>
    <BorderWidth>
    <Right>1pt</Right>
    </BorderWidth>
    <Format>MMM d</Format>
    <BorderColor>
    <Right>Black</Right>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Format(Fields!MAX_DATE.Value,"MMM d")</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="ORDER_COUNT">
    <rd:DefaultName>ORDER_COUNT</rd:DefaultName>
    <ZIndex>33</ZIndex>
    <Style>
    <BorderStyle>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Left>1pt</Left>
    </BorderWidth>
    <Format>N0</Format>
    <BorderColor>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!ORDER_COUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="ORDER_AMOUNT">
    <rd:DefaultName>ORDER_AMOUNT</rd:DefaultName>
    <ZIndex>32</ZIndex>
    <Style>
    <TextAlign>Right</TextAlign>
    <Format>C</Format>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!ORDER_AMOUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="ORDER_PRICE_POINT">
    <rd:DefaultName>ORDER_PRICE_POINT</rd:DefaultName>
    <ZIndex>31</ZIndex>
    <Style>
    <BorderStyle>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Right>1pt</Right>
    </BorderWidth>
    <Format>C</Format>
    <BorderColor>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!ORDER_PRICE_POINT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="SHIPPED_COUNT">
    <rd:DefaultName>SHIPPED_COUNT</rd:DefaultName>
    <ZIndex>30</ZIndex>
    <Style>
    <TextAlign>Right</TextAlign>
    <Format>N0</Format>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!SHIPPED_COUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="SHIPPED_AMOUNT">
    <rd:DefaultName>SHIPPED_AMOUNT</rd:DefaultName>
    <ZIndex>29</ZIndex>
    <Style>
    <TextAlign>Right</TextAlign>
    <Format>C</Format>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!SHIPPED_AMOUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="SHIPPED_PCT">
    <rd:DefaultName>SHIPPED_PCT</rd:DefaultName>
    <ZIndex>28</ZIndex>
    <Style>
    <BorderStyle>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Right>1pt</Right>
    </BorderWidth>
    <Format>N2</Format>
    <BorderColor>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!SHIPPED_PCT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="ZERO_COUNT">
    <rd:DefaultName>ZERO_COUNT</rd:DefaultName>
    <ZIndex>27</ZIndex>
    <Style>
    <BorderStyle>
    <Top>None</Top>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Left>1pt</Left>
    </BorderWidth>
    <Format>N0</Format>
    <BorderColor>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!ZERO_COUNT.Value+Fields!ERROR_COUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="ZERO_AMOUNT">
    <rd:DefaultName>ZERO_AMOUNT</rd:DefaultName>
    <ZIndex>26</ZIndex>
    <Style>
    <TextAlign>Right</TextAlign>
    <Format>C</Format>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!ZERO_AMOUNT.Value+Fields!ERROR_AMOUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="ZERO_PCT">
    <rd:DefaultName>ZERO_PCT</rd:DefaultName>
    <ZIndex>25</ZIndex>
    <Style>
    <BorderStyle>
    <Top>None</Top>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Right>1pt</Right>
    </BorderWidth>
    <Format>N2</Format>
    <BorderColor>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!ZERO_PCT.Value+Fields!ERROR_PCT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="HOLD_COUNT">
    <rd:DefaultName>HOLD_COUNT</rd:DefaultName>
    <ZIndex>24</ZIndex>
    <Style>
    <BorderStyle>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Left>1pt</Left>
    </BorderWidth>
    <Format>N0</Format>
    <BorderColor>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!HOLD_COUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="HOLD_AMOUNT">
    <rd:DefaultName>HOLD_AMOUNT</rd:DefaultName>
    <ZIndex>23</ZIndex>
    <Style>
    <TextAlign>Right</TextAlign>
    <Format>C</Format>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!HOLD_AMOUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="HOLD_PCT">
    <rd:DefaultName>HOLD_PCT</rd:DefaultName>
    <ZIndex>22</ZIndex>
    <Style>
    <BorderStyle>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Right>1pt</Right>
    </BorderWidth>
    <Format>N2</Format>
    <BorderColor>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!HOLD_PCT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="READY_COUNT">
    <rd:DefaultName>READY_COUNT</rd:DefaultName>
    <ZIndex>21</ZIndex>
    <Style>
    <BorderStyle>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Left>1pt</Left>
    </BorderWidth>
    <Format>N0</Format>
    <BorderColor>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!READY_COUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="READY_AMOUNT">
    <rd:DefaultName>READY_AMOUNT</rd:DefaultName>
    <ZIndex>20</ZIndex>
    <Style>
    <TextAlign>Right</TextAlign>
    <Format>C</Format>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!READY_AMOUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="READY_PCT">
    <rd:DefaultName>READY_PCT</rd:DefaultName>
    <ZIndex>19</ZIndex>
    <Style>
    <BorderStyle>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Right>1pt</Right>
    </BorderWidth>
    <Format>N2</Format>
    <BorderColor>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!READY_PCT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="WAIT_COUNT">
    <rd:DefaultName>WAIT_COUNT</rd:DefaultName>
    <ZIndex>18</ZIndex>
    <Style>
    <BorderStyle>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Left>1pt</Left>
    </BorderWidth>
    <Format>N0</Format>
    <BorderColor>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!WAIT_COUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="WAIT_AMOUNT">
    <rd:DefaultName>WAIT_AMOUNT</rd:DefaultName>
    <ZIndex>17</ZIndex>
    <Style>
    <TextAlign>Right</TextAlign>
    <Format>C</Format>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!WAIT_AMOUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="WAIT_PCT">
    <rd:DefaultName>WAIT_PCT</rd:DefaultName>
    <ZIndex>16</ZIndex>
    <Style>
    <BorderStyle>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Right>1pt</Right>
    </BorderWidth>
    <Format>N2</Format>
    <BorderColor>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!WAIT_PCT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="DECLINED_COUNT">
    <rd:DefaultName>DECLINED_COUNT</rd:DefaultName>
    <ZIndex>15</ZIndex>
    <Style>
    <BorderStyle>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Left>1pt</Left>
    </BorderWidth>
    <Format>N0</Format>
    <BorderColor>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!DECLINED_COUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="DECLINED_AMOUNT">
    <rd:DefaultName>DECLINED_AMOUNT</rd:DefaultName>
    <ZIndex>14</ZIndex>
    <Style>
    <TextAlign>Right</TextAlign>
    <Format>C</Format>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!DECLINED_AMOUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="DECLINED_PCT">
    <rd:DefaultName>DECLINED_PCT</rd:DefaultName>
    <ZIndex>13</ZIndex>
    <Style>
    <BorderStyle>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Right>1pt</Right>
    </BorderWidth>
    <Format>N2</Format>
    <BorderColor>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!DECLINED_PCT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="DELINQUENT_COUNT">
    <rd:DefaultName>DELINQUENT_COUNT</rd:DefaultName>
    <ZIndex>12</ZIndex>
    <Style>
    <BorderStyle>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Left>1pt</Left>
    </BorderWidth>
    <Format>N0</Format>
    <BorderColor>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!DELINQUENT_COUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="DELINQUENT_AMOUNT">
    <rd:DefaultName>DELINQUENT_AMOUNT</rd:DefaultName>
    <ZIndex>11</ZIndex>
    <Style>
    <TextAlign>Right</TextAlign>
    <Format>C</Format>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!DELINQUENT_AMOUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="DELINQUENT_PCT">
    <rd:DefaultName>DELINQUENT_PCT</rd:DefaultName>
    <ZIndex>10</ZIndex>
    <Style>
    <BorderStyle>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Right>1pt</Right>
    </BorderWidth>
    <Format>N2</Format>
    <BorderColor>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!DELINQUENT_PCT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="CANCEL_COUNT">
    <rd:DefaultName>CANCEL_COUNT</rd:DefaultName>
    <ZIndex>9</ZIndex>
    <Style>
    <BorderStyle>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Left>1pt</Left>
    </BorderWidth>
    <Format>N0</Format>
    <BorderColor>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!CANCEL_COUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="CANCEL_AMOUNT">
    <rd:DefaultName>CANCEL_AMOUNT</rd:DefaultName>
    <ZIndex>8</ZIndex>
    <Style>
    <TextAlign>Right</TextAlign>
    <Format>C</Format>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!CANCEL_AMOUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="CANCEL_PCT">
    <rd:DefaultName>CANCEL_PCT</rd:DefaultName>
    <ZIndex>7</ZIndex>
    <Style>
    <BorderStyle>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Right>1pt</Right>
    </BorderWidth>
    <Format>N2</Format>
    <BorderColor>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!CANCEL_PCT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="RETURN_COUNT_EST">
    <rd:DefaultName>RETURN_COUNT_EST</rd:DefaultName>
    <ZIndex>6</ZIndex>
    <Style>
    <BorderStyle>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Left>1pt</Left>
    </BorderWidth>
    <Format>N0</Format>
    <BorderColor>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!RETURN_COUNT_EST.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="RETURN_AMOUNT_EST">
    <rd:DefaultName>RETURN_AMOUNT_EST</rd:DefaultName>
    <ZIndex>5</ZIndex>
    <Style>
    <TextAlign>Right</TextAlign>
    <Format>C</Format>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!RETURN_AMOUNT_EST.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="RETURN_RATE_EST">
    <rd:DefaultName>RETURN_RATE_EST</rd:DefaultName>
    <ZIndex>4</ZIndex>
    <Style>
    <BorderStyle>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Right>1pt</Right>
    </BorderWidth>
    <Format>N2</Format>
    <BorderColor>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!RETURN_RATE_EST.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="RETURN_COUNT">
    <rd:DefaultName>RETURN_COUNT</rd:DefaultName>
    <ZIndex>3</ZIndex>
    <Style>
    <BorderStyle>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Left>1pt</Left>
    </BorderWidth>
    <Format>N0</Format>
    <BorderColor>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!RETURN_COUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="RETURN_AMOUNT">
    <rd:DefaultName>RETURN_AMOUNT</rd:DefaultName>
    <ZIndex>2</ZIndex>
    <Style>
    <TextAlign>Right</TextAlign>
    <Format>C</Format>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!RETURN_AMOUNT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="RETURN_RATE">
    <rd:DefaultName>RETURN_RATE</rd:DefaultName>
    <ZIndex>1</ZIndex>
    <Style>
    <TextAlign>Right</TextAlign>
    <Format>N2</Format>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!RETURN_RATE.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="RETURN_PRICE_POINT">
    <rd:DefaultName>RETURN_PRICE_POINT</rd:DefaultName>
    <Style>
    <BorderStyle>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Right>1pt</Right>
    </BorderWidth>
    <Format>C</Format>
    <BorderColor>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>=Fields!RETURN_PRICE_POINT.Value</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    </TableCells>
    <Height>0.25in</Height>
    </TableRow>
    </TableRows>
    </Details>
    <Header>
    <TableRows>
    <TableRow>
    <TableCells>
    <TableCell>
    <ColSpan>2</ColSpan>
    <ReportItems>
    <Textbox Name="textbox10">
    <rd:DefaultName>textbox10</rd:DefaultName>
    <ZIndex>82</ZIndex>
    <Style>
    <BorderStyle>
    <Top>Solid</Top>
    <Left>Solid</Left>
    <Right>Solid</Right>
    </BorderStyle>
    <PaddingLeft>2pt</PaddingLeft>
    <BorderWidth>
    <Top>1pt</Top>
    <Left>1pt</Left>
    <Right>1pt</Right>
    </BorderWidth>
    <PaddingBottom>2pt</PaddingBottom>
    <BorderColor>
    <Top>Black</Top>
    <Left>Black</Left>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    </Style>
    <CanGrow>true</CanGrow>
    <Value />
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ColSpan>3</ColSpan>
    <ReportItems>
    <Textbox Name="textbox11">
    <rd:DefaultName>textbox11</rd:DefaultName>
    <ZIndex>81</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>None</Bottom>
    <Default>Solid</Default>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Center</TextAlign>
    <BorderWidth>
    <Left>1pt</Left>
    </BorderWidth>
    <FontWeight>700</FontWeight>
    <Format>N0</Format>
    <BorderColor>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Orders</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ColSpan>3</ColSpan>
    <ReportItems>
    <Textbox Name="textbox4">
    <rd:DefaultName>textbox4</rd:DefaultName>
    <ZIndex>80</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>None</Bottom>
    <Default>Solid</Default>
    <Left>Solid</Left>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Center</TextAlign>
    <BorderWidth>
    <Left>1pt</Left>
    <Right>1pt</Right>
    </BorderWidth>
    <FontWeight>700</FontWeight>
    <Format>N0</Format>
    <BorderColor>
    <Left>Black</Left>
    <Right>Black</Right>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Shipped (S)</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ColSpan>3</ColSpan>
    <ReportItems>
    <Textbox Name="textbox17">
    <rd:DefaultName>textbox17</rd:DefaultName>
    <ZIndex>79</ZIndex>
    <Style>
    <BorderStyle>
    <Top>Solid</Top>
    <Left>Solid</Left>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Center</TextAlign>
    <BorderWidth>
    <Top>1pt</Top>
    <Left>1pt</Left>
    <Right>1pt</Right>
    </BorderWidth>
    <FontWeight>700</FontWeight>
    <Format>N0</Format>
    <BorderColor>
    <Top>Black</Top>
    <Left>Black</Left>
    <Right>Black</Right>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Zero Dollar or Error (Z or K)</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ColSpan>3</ColSpan>
    <ReportItems>
    <Textbox Name="textbox18">
    <rd:DefaultName>textbox18</rd:DefaultName>
    <ZIndex>78</ZIndex>
    <Style>
    <BorderStyle>
    <Top>Solid</Top>
    <Left>Solid</Left>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Center</TextAlign>
    <BorderWidth>
    <Top>1pt</Top>
    <Left>1pt</Left>
    <Right>1pt</Right>
    </BorderWidth>
    <FontWeight>700</FontWeight>
    <Format>N0</Format>
    <BorderColor>
    <Top>Black</Top>
    <Left>Black</Left>
    <Right>Black</Right>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Hold (H)</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ColSpan>3</ColSpan>
    <ReportItems>
    <Textbox Name="textbox25">
    <rd:DefaultName>textbox25</rd:DefaultName>
    <ZIndex>77</ZIndex>
    <Style>
    <BorderStyle>
    <Top>Solid</Top>
    <Left>Solid</Left>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Center</TextAlign>
    <BorderWidth>
    <Top>1pt</Top>
    <Left>1pt</Left>
    <Right>1pt</Right>
    </BorderWidth>
    <FontWeight>700</FontWeight>
    <Format>N0</Format>
    <BorderColor>
    <Top>Black</Top>
    <Left>Black</Left>
    <Right>Black</Right>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Ready (R)</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ColSpan>3</ColSpan>
    <ReportItems>
    <Textbox Name="textbox29">
    <rd:DefaultName>textbox29</rd:DefaultName>
    <ZIndex>76</ZIndex>
    <Style>
    <BorderStyle>
    <Top>Solid</Top>
    <Left>Solid</Left>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Center</TextAlign>
    <BorderWidth>
    <Top>1pt</Top>
    <Left>1pt</Left>
    <Right>1pt</Right>
    </BorderWidth>
    <FontWeight>700</FontWeight>
    <Format>N0</Format>
    <BorderColor>
    <Top>Black</Top>
    <Left>Black</Left>
    <Right>Black</Right>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Waiting (W)</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ColSpan>3</ColSpan>
    <ReportItems>
    <Textbox Name="textbox33">
    <rd:DefaultName>textbox33</rd:DefaultName>
    <ZIndex>75</ZIndex>
    <Style>
    <BorderStyle>
    <Top>Solid</Top>
    <Left>Solid</Left>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Center</TextAlign>
    <BorderWidth>
    <Top>1pt</Top>
    <Left>1pt</Left>
    <Right>1pt</Right>
    </BorderWidth>
    <FontWeight>700</FontWeight>
    <Format>N0</Format>
    <BorderColor>
    <Top>Black</Top>
    <Left>Black</Left>
    <Right>Black</Right>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Declined (D)</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ColSpan>3</ColSpan>
    <ReportItems>
    <Textbox Name="textbox37">
    <rd:DefaultName>textbox37</rd:DefaultName>
    <ZIndex>74</ZIndex>
    <Style>
    <BorderStyle>
    <Top>Solid</Top>
    <Left>Solid</Left>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Center</TextAlign>
    <BorderWidth>
    <Top>1pt</Top>
    <Left>1pt</Left>
    <Right>1pt</Right>
    </BorderWidth>
    <FontWeight>700</FontWeight>
    <Format>N0</Format>
    <BorderColor>
    <Top>Black</Top>
    <Left>Black</Left>
    <Right>Black</Right>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Delinquent (N)</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ColSpan>3</ColSpan>
    <ReportItems>
    <Textbox Name="textbox41">
    <rd:DefaultName>textbox41</rd:DefaultName>
    <ZIndex>73</ZIndex>
    <Style>
    <BorderStyle>
    <Top>Solid</Top>
    <Left>Solid</Left>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Center</TextAlign>
    <BorderWidth>
    <Top>1pt</Top>
    <Left>1pt</Left>
    <Right>1pt</Right>
    </BorderWidth>
    <FontWeight>700</FontWeight>
    <Format>N0</Format>
    <BorderColor>
    <Top>Black</Top>
    <Left>Black</Left>
    <Right>Black</Right>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Cancelled (X)</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ColSpan>3</ColSpan>
    <ReportItems>
    <Textbox Name="textbox45">
    <rd:DefaultName>textbox45</rd:DefaultName>
    <ZIndex>72</ZIndex>
    <Style>
    <BorderStyle>
    <Top>Solid</Top>
    <Left>Solid</Left>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Center</TextAlign>
    <BorderWidth>
    <Top>1pt</Top>
    <Left>1pt</Left>
    <Right>1pt</Right>
    </BorderWidth>
    <FontWeight>700</FontWeight>
    <Format>N0</Format>
    <BorderColor>
    <Top>Black</Top>
    <Left>Black</Left>
    <Right>Black</Right>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Estimated Returns</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ColSpan>4</ColSpan>
    <ReportItems>
    <Textbox Name="textbox52">
    <rd:DefaultName>textbox52</rd:DefaultName>
    <ZIndex>71</ZIndex>
    <Style>
    <BorderStyle>
    <Top>Solid</Top>
    <Left>Solid</Left>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Center</TextAlign>
    <BorderWidth>
    <Top>1pt</Top>
    <Left>1pt</Left>
    <Right>1pt</Right>
    </BorderWidth>
    <FontWeight>700</FontWeight>
    <Format>N0</Format>
    <BorderColor>
    <Top>Black</Top>
    <Left>Black</Left>
    <Right>Black</Right>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Actual Returns</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    </TableCells>
    <Height>0.25in</Height>
    </TableRow>
    <TableRow>
    <TableCells>
    <TableCell>
    <ColSpan>2</ColSpan>
    <ReportItems>
    <Textbox Name="textbox1">
    <rd:DefaultName>textbox1</rd:DefaultName>
    <ZIndex>70</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Left>Solid</Left>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Center</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Left>1pt</Left>
    <Right>1pt</Right>
    </BorderWidth>
    <FontWeight>700</FontWeight>
    <VerticalAlign>Bottom</VerticalAlign>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Left>Black</Left>
    <Right>Black</Right>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Week</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox2">
    <rd:DefaultName>textbox2</rd:DefaultName>
    <ZIndex>69</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Left>1pt</Left>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N0</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Count</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox3">
    <rd:DefaultName>textbox3</rd:DefaultName>
    <ZIndex>68</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>C</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Amount</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox5">
    <rd:DefaultName>textbox5</rd:DefaultName>
    <ZIndex>67</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Right>1pt</Right>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N2</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Price Point</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox6">
    <rd:DefaultName>textbox6</rd:DefaultName>
    <ZIndex>66</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Left>1pt</Left>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N0</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Count</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox14">
    <rd:DefaultName>textbox14</rd:DefaultName>
    <ZIndex>65</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>C</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Amount</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox9">
    <rd:DefaultName>textbox9</rd:DefaultName>
    <ZIndex>64</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Right>1pt</Right>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N2</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>% Orders</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox20">
    <ZIndex>63</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N0</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Count</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox21">
    <ZIndex>62</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>C</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Amount</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox22">
    <ZIndex>61</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N2</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>% Orders</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox7">
    <ZIndex>60</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Left>1pt</Left>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N0</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Count</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox13">
    <ZIndex>59</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>C</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Amount</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox24">
    <ZIndex>58</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Right>1pt</Right>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N2</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>% Orders</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox8">
    <ZIndex>57</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Left>1pt</Left>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N0</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Count</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox16">
    <ZIndex>56</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>C</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Amount</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox28">
    <ZIndex>55</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Right>1pt</Right>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N2</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>% Orders</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox12">
    <ZIndex>54</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Left>1pt</Left>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N0</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Count</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox23">
    <ZIndex>53</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>C</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Amount</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox32">
    <ZIndex>52</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Right>1pt</Right>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N2</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>% Orders</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox15">
    <ZIndex>51</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Left>1pt</Left>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N0</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Count</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox26">
    <ZIndex>50</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>C</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Amount</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox27">
    <ZIndex>49</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Right>1pt</Right>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N2</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>% Orders</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox19">
    <ZIndex>48</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Left>1pt</Left>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N0</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Count</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox34">
    <ZIndex>47</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>C</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Amount</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox40">
    <ZIndex>46</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Right>1pt</Right>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N2</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>% Orders</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox30">
    <ZIndex>45</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Left>1pt</Left>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N0</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Count</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox36">
    <ZIndex>44</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>C</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Amount</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox44">
    <ZIndex>43</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Right>1pt</Right>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N2</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>% Orders</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox31">
    <ZIndex>42</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Left>1pt</Left>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N0</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Count</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox39">
    <ZIndex>41</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>C</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Amount</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox48">
    <ZIndex>40</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Right>1pt</Right>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N2</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>% Orders</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox35">
    <ZIndex>39</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    <Left>Solid</Left>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Left>1pt</Left>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N0</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Left>Black</Left>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Count</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox43">
    <ZIndex>38</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Top>None</Top>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>C</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Amount</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox49">
    <ZIndex>37</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N2</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    </BorderColor>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>% Shipped</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    <TableCell>
    <ReportItems>
    <Textbox Name="textbox38">
    <rd:DefaultName>textbox38</rd:DefaultName>
    <ZIndex>36</ZIndex>
    <Style>
    <BorderStyle>
    <Bottom>Solid</Bottom>
    <Right>Solid</Right>
    </BorderStyle>
    <TextAlign>Right</TextAlign>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Right>1pt</Right>
    </BorderWidth>
    <VerticalAlign>Bottom</VerticalAlign>
    <Format>N2</Format>
    <BorderColor>
    <Bottom>Black</Bottom>
    <Right>Black</Right>
    </BorderColor>
    <PaddingRight>2pt</PaddingRight>
    </Style>
    <CanGrow>true</CanGrow>
    <Value>Price Point</Value>
    </Textbox>
    </ReportItems>
    </TableCell>
    </TableCells>
    <Height>0.25in</Height>
    </TableRow>
    </TableRows>
    </Header>
    <TableColumns>
    <TableColumn>
    <Width>0.625in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.625in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.625in</Width>
    </TableColumn>
    <TableColumn>
    <Width>1.125in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.75in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.625in</Width>
    </TableColumn>
    <TableColumn>
    <Width>1.125in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.75in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.625in</Width>
    </TableColumn>
    <TableColumn>
    <Width>1.125in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.75in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.625in</Width>
    </TableColumn>
    <TableColumn>
    <Width>1.125in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.75in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.625in</Width>
    </TableColumn>
    <TableColumn>
    <Width>1.125in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.75in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.625in</Width>
    </TableColumn>
    <TableColumn>
    <Width>1.125in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.75in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.625in</Width>
    </TableColumn>
    <TableColumn>
    <Width>1.125in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.75in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.625in</Width>
    </TableColumn>
    <TableColumn>
    <Width>1.125in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.75in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.625in</Width>
    </TableColumn>
    <TableColumn>
    <Width>1.125in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.75in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.625in</Width>
    </TableColumn>
    <TableColumn>
    <Width>1.125in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.75in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.625in</Width>
    </TableColumn>
    <TableColumn>
    <Width>1.125in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.75in</Width>
    </TableColumn>
    <TableColumn>
    <Width>0.75in</Width>
    </TableColumn>
    </TableColumns>
    </Table>
    </ReportItems>
    <Height>0.75in</Height>
    <Style>
    <BorderWidth>
    <Bottom>1pt</Bottom>
    <Top>1pt</Top>
    <Left>1pt</Left>
    <Right>1pt</Right>
    </BorderWidth>
    </Style>
    </Body>





  • Cosmin Cojocar

    It sounds like you are using local mode, but I just want to be sure. In server mode, the html for the report is generated on the report server, so it won't see any Firefox updated until SQL Server 2005 SP2 is released.

    But assuming it is local mode, will you post the RDLC file you are using so we can take a look


  • Mikkel Christensen

    I have been able to reproduce the problem with your RDLC file. We are investigating possible workarounds. I'll let you know when we have more information.
  • Not seeing any FireFox Fixes...