[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.2

Microsoft Reporting - rdlc list wont page break

Asked by mgordon-spi in MS SQL Reporting, SQL Reporting, Programming for ASP.NET

I have a list on an rdlc that I want to break for every page. I set page break properties for end and start together and then seperately and none works.

It will break for the first page but then all subsequent pages just run straight after the other without breaking.

Any help would be greatly appreciated.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
<?xml version="1.0" encoding="utf-8"?>
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
  <DataSources>
    <DataSource Name="MainConnStr">
      <rd:DataSourceID>15d5dc32-5714-4f67-845f-9a3425ac3d8f</rd:DataSourceID>
      <ConnectionProperties>
        <DataProvider>SQL</DataProvider>
        <ConnectString />
      </ConnectionProperties>
    </DataSource>
  </DataSources>
  <InteractiveHeight>29.7cm</InteractiveHeight>
  <ReportParameters>
    <ReportParameter Name="FeeTotal">
      <DataType>String</DataType>
      <AllowBlank>true</AllowBlank>
      <Prompt>FeeTotal</Prompt>
    </ReportParameter>
  </ReportParameters>
  <rd:DrawGrid>true</rd:DrawGrid>
  <InteractiveWidth>21cm</InteractiveWidth>
  <rd:GridSpacing>0.25cm</rd:GridSpacing>
  <rd:SnapToGrid>false</rd:SnapToGrid>
  <RightMargin>1cm</RightMargin>
  <LeftMargin>1cm</LeftMargin>
  <BottomMargin>1cm</BottomMargin>
  <rd:ReportID>d0ca3691-7df1-42fe-a035-65914fe38d0f</rd:ReportID>
  <EmbeddedImages>
    <EmbeddedImage Name="brand">
      <MIMEType>image/gif</MIMEType>
      <ImageData>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</ImageData>
    </EmbeddedImage>
  </EmbeddedImages>
  <PageWidth>21cm</PageWidth>
  <DataSets>
    <DataSet Name="CostReports_dtStudents">
      <Fields>
        <Field Name="sStudentCode">
          <DataField>sStudentCode</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="sName">
          <DataField>sName</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="sForm">
          <DataField>sForm</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="sYearLevel">
          <DataField>sYearLevel</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="BillerRef">
          <DataField>BillerRef</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
        <Field Name="SubjectTotalCost">
          <DataField>SubjectTotalCost</DataField>
          <rd:TypeName>System.Decimal</rd:TypeName>
        </Field>
      </Fields>
      <Query>
        <DataSourceName>MainConnStr</DataSourceName>
        <CommandText>SELECT     tStudents.sStudentCode, tStudents.sFirstName + ' ' + tStudents.sLastName AS sName, tForm.sForm, tYearLevel.sYearLevel, tStudents.BillerRef, 
                      SUM(tSubjects.mCost) AS SubjectTotalCost
FROM         tStudents INNER JOIN
                      tForm ON tStudents.FormID = tForm.ID INNER JOIN
                      tYearLevel ON tStudents.iYearLevel = tYearLevel.ID INNER JOIN
                      tSubjectChoice ON tStudents.sStudentCode = tSubjectChoice.StudentID INNER JOIN
                      tSubjects ON tSubjectChoice.SubjectID = tSubjects.ID
WHERE     (tStudents.SchoolID = @ID) AND (tYearLevel.SchoolID = @ID) AND (tForm.SchoolID = @ID) AND (tForm.ID = @Form)
GROUP BY tStudents.sStudentCode, tStudents.sFirstName, tStudents.sLastName, tForm.sForm, tYearLevel.sYearLevel, tStudents.BillerRef
ORDER BY tForm.sForm</CommandText>
        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
      </Query>
      <rd:DataSetInfo>
        <rd:DataSetName>CostReports</rd:DataSetName>
        <rd:TableName>dtStudents</rd:TableName>
        <rd:TableAdapterName>daStudents</rd:TableAdapterName>
        <rd:TableAdapterFillMethod>FillStudents</rd:TableAdapterFillMethod>
        <rd:TableAdapterGetDataMethod>GetDataStudents</rd:TableAdapterGetDataMethod>
      </rd:DataSetInfo>
    </DataSet>
  </DataSets>
  <Code />
  <Width>18.6746cm</Width>
  <Body>
    <ColumnSpacing>1cm</ColumnSpacing>
    <ReportItems>
      <List Name="list1">
        <Left>0.10582cm</Left>
        <DataSetName>CostReports_dtStudents</DataSetName>
        <ReportItems>
          <Rectangle Name="SubReportBox">
            <Left>0.07937cm</Left>
            <ZIndex>8</ZIndex>
            <ReportItems>
              <Subreport Name="subreport1">
                <Parameters>
                  <Parameter Name="StudentCode">
                    <Value>=Fields!sStudentCode.Value</Value>
                  </Parameter>
                </Parameters>
                <Top>0.37037cm</Top>
                <ReportName>Subjects</ReportName>
                <Width>17.27513cm</Width>
                <Left>0.39683cm</Left>
                <Height>10.02646cm</Height>
              </Subreport>
            </ReportItems>
            <Top>2.3545cm</Top>
            <Width>18.02514cm</Width>
            <Style>
              <BorderStyle>
                <Default>Solid</Default>
              </BorderStyle>
              <BorderWidth>
                <Default>0.5pt</Default>
              </BorderWidth>
            </Style>
            <Height>10.71297cm</Height>
          </Rectangle>
          <Rectangle Name="rectangle8">
            <Left>0.07672cm</Left>
            <ZIndex>7</ZIndex>
            <ReportItems>
              <Textbox Name="BillerRef">
                <rd:DefaultName>BillerRef</rd:DefaultName>
                <Top>1.24339cm</Top>
                <Width>5.60847cm</Width>
                <Style>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <ZIndex>5</ZIndex>
                <CanGrow>true</CanGrow>
                <Left>3.01587cm</Left>
                <Height>0.63492cm</Height>
                <Value>=Fields!BillerRef.Value</Value>
              </Textbox>
              <Textbox Name="textbox21">
                <Top>0.5cm</Top>
                <Width>5.25cm</Width>
                <Style>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <ZIndex>4</ZIndex>
                <CanGrow>true</CanGrow>
                <Left>3.75cm</Left>
                <Height>0.63492cm</Height>
                <Value>.............................</Value>
              </Textbox>
              <Textbox Name="textbox20">
                <Top>1.25cm</Top>
                <Width>1.5cm</Width>
                <Style>
                  <FontWeight>700</FontWeight>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <ZIndex>3</ZIndex>
                <CanGrow>true</CanGrow>
                <Left>1.5cm</Left>
                <Height>0.63492cm</Height>
                <Value>Ref No:</Value>
              </Textbox>
              <Textbox Name="textbox19">
                <Top>0.5cm</Top>
                <Width>2.25cm</Width>
                <Style>
                  <FontWeight>700</FontWeight>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <ZIndex>2</ZIndex>
                <CanGrow>true</CanGrow>
                <Left>1.5cm</Left>
                <Height>0.63492cm</Height>
                <Value>Biller Code</Value>
              </Textbox>
              <Textbox Name="textbox18">
                <Top>1cm</Top>
                <Width>8cm</Width>
                <Style>
                  <FontSize>8pt</FontSize>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <ZIndex>1</ZIndex>
                <CanGrow>true</CanGrow>
                <Left>9.5cm</Left>
                <Height>1cm</Height>
                <Value>Call you bank, Credit union or Building society to make this payment from your cheque, savings or credit card</Value>
              </Textbox>
              <Image Name="image1">
                <Sizing>Fit</Sizing>
                <Top>0.25cm</Top>
                <Width>1.5cm</Width>
                <MIMEType>image/gif</MIMEType>
                <Source>Embedded</Source>
                <Style />
                <Height>1.5cm</Height>
                <Value>brand</Value>
              </Image>
            </ReportItems>
            <Top>24.87699cm</Top>
            <Width>18.0291cm</Width>
            <Style>
              <BorderStyle>
                <Default>Solid</Default>
              </BorderStyle>
              <BorderWidth>
                <Default>0.5pt</Default>
              </BorderWidth>
            </Style>
            <Height>2.32804cm</Height>
          </Rectangle>
          <Rectangle Name="rectangle7">
            <Left>0.07672cm</Left>
            <ZIndex>6</ZIndex>
            <ReportItems>
              <Textbox Name="textbox12">
                <Top>1.25cm</Top>
                <Width>2.53968cm</Width>
                <Style>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <ZIndex>5</ZIndex>
                <CanGrow>true</CanGrow>
                <Left>15.18254cm</Left>
                <Height>0.63492cm</Height>
                <Value>=FormatCurrency(val(Fields!SubjectTotalCost.Value) + val(Parameters!FeeTotal.Value)+50)</Value>
              </Textbox>
              <Textbox Name="textbox17">
                <Top>3cm</Top>
                <Width>17.4709cm</Width>
                <Style>
                  <FontSize>8pt</FontSize>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <ZIndex>4</ZIndex>
                <CanGrow>true</CanGrow>
                <Value>**If all of the above charges, including the Voluntary Contribution, are paid by
Friday 11th December 2009 a discount of $25.00 will apply.
 
INDIVIDUAL COURSE SELECTIONS WILL NOT BE CONFIRMED UNTIL PAYMENT OF SUBJECT CHARGES HAS BEEN RECEIVED. Students are to pay their subject charges by Friday 9th October or they will be required to select non high cost subjects for 2010
 
ALL VET AMOUNTS ARE TO BE CONFIRMED AFTER NOTIFICATION HAS BEEN GIVEN BY THE COURSE PROVIDERS. This will mean that VET fees for 2010 nay alter. We will notify families of any changes to these amounts.
</Value>
              </Textbox>
              <Textbox Name="textbox16">
                <Top>2.25cm</Top>
                <Width>4.75cm</Width>
                <Style>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <ZIndex>3</ZIndex>
                <CanGrow>true</CanGrow>
                <Height>0.63492cm</Height>
                <Value>Inc. discount of $25.00**</Value>
              </Textbox>
              <Textbox Name="textbox15">
                <Top>1.25cm</Top>
                <Width>4.75cm</Width>
                <Style>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <ZIndex>2</ZIndex>
                <CanGrow>true</CanGrow>
                <Height>0.63492cm</Height>
                <Value>Total with Building Fund</Value>
              </Textbox>
              <Textbox Name="textbox14">
                <rd:DefaultName>textbox14</rd:DefaultName>
                <Top>0.25cm</Top>
                <Width>1.5cm</Width>
                <Style>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <ZIndex>1</ZIndex>
                <CanGrow>true</CanGrow>
                <Height>0.63492cm</Height>
                <Value>Total</Value>
              </Textbox>
              <Textbox Name="textbox13">
                <Top>0.27646cm</Top>
                <Width>2.53968cm</Width>
                <Style>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <CanGrow>true</CanGrow>
                <Left>15.18254cm</Left>
                <Height>0.63492cm</Height>
                <Value>=FormatCurrency(val(Fields!SubjectTotalCost.Value) + val(Parameters!FeeTotal.Value))</Value>
              </Textbox>
            </ReportItems>
            <Top>18.37698cm</Top>
            <Width>18.03968cm</Width>
            <Style>
              <BorderStyle>
                <Default>Solid</Default>
              </BorderStyle>
              <BorderWidth>
                <Default>0.5pt</Default>
              </BorderWidth>
            </Style>
            <Height>6.25cm</Height>
          </Rectangle>
          <Rectangle Name="rectangle6">
            <Left>0.07672cm</Left>
            <ZIndex>5</ZIndex>
            <ReportItems>
              <Textbox Name="textbox10">
                <Top>0.14418cm</Top>
                <Width>10.5cm</Width>
                <Style>
                  <TextAlign>Left</TextAlign>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <ZIndex>1</ZIndex>
                <CanGrow>true</CanGrow>
                <Left>0.25cm</Left>
                <Height>0.63492cm</Height>
                <Value>VOLUNTARY CONTRIBUTION (Building Fund)</Value>
              </Textbox>
              <Textbox Name="textbox11">
                <Top>0.14418cm</Top>
                <Width>2.53968cm</Width>
                <Style>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <CanGrow>true</CanGrow>
                <Left>15.18255cm</Left>
                <Height>0.63492cm</Height>
                <Value>$50.00</Value>
              </Textbox>
            </ReportItems>
            <Top>17.12698cm</Top>
            <Width>18.03968cm</Width>
            <Style>
              <BorderStyle>
                <Default>Solid</Default>
              </BorderStyle>
              <BorderWidth>
                <Default>0.5pt</Default>
              </BorderWidth>
            </Style>
            <Height>0.88492cm</Height>
          </Rectangle>
          <Rectangle Name="rectangle5">
            <Left>0.07672cm</Left>
            <ZIndex>4</ZIndex>
            <ReportItems>
              <Textbox Name="textbox8">
                <Top>0.14418cm</Top>
                <Width>7.1164cm</Width>
                <Style>
                  <TextAlign>Right</TextAlign>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <CanGrow>true</CanGrow>
                <Left>10.55556cm</Left>
                <Height>0.63492cm</Height>
                <Value>="Sub Total    " &amp; Formatcurrency(Parameters!FeeTotal.Value)</Value>
              </Textbox>
            </ReportItems>
            <Top>15.87698cm</Top>
            <Width>18.03968cm</Width>
            <Style>
              <BorderStyle>
                <Default>Solid</Default>
              </BorderStyle>
              <BorderWidth>
                <Default>0.5pt</Default>
              </BorderWidth>
            </Style>
            <Height>0.88492cm</Height>
          </Rectangle>
          <Rectangle Name="rectangle4">
            <Left>0.07672cm</Left>
            <ZIndex>3</ZIndex>
            <ReportItems>
              <Subreport Name="subreport2">
                <Top>0.291cm</Top>
                <ReportName>additionalFees</ReportName>
                <Width>17.27513cm</Width>
                <Left>0.39683cm</Left>
                <Height>0.63492cm</Height>
              </Subreport>
            </ReportItems>
            <Top>14.34127cm</Top>
            <Width>18.04761cm</Width>
            <Style>
              <BorderStyle>
                <Default>Solid</Default>
              </BorderStyle>
              <BorderWidth>
                <Default>0.5pt</Default>
              </BorderWidth>
            </Style>
            <Height>1.21692cm</Height>
          </Rectangle>
          <Rectangle Name="rectangle3">
            <Left>0.07672cm</Left>
            <ZIndex>2</ZIndex>
            <ReportItems>
              <Textbox Name="SubjectTotalCost">
                <rd:DefaultName>SubjectTotalCost</rd:DefaultName>
                <Top>0.14418cm</Top>
                <Width>7.1164cm</Width>
                <Style>
                  <TextAlign>Right</TextAlign>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <CanGrow>true</CanGrow>
                <Left>10.55556cm</Left>
                <Height>0.63492cm</Height>
                <Value>="Sub Total    " &amp; Formatcurrency(Fields!SubjectTotalCost.Value)</Value>
              </Textbox>
            </ReportItems>
            <Top>13.34127cm</Top>
            <Width>18.01587cm</Width>
            <Style>
              <BorderStyle>
                <Default>Solid</Default>
              </BorderStyle>
              <BorderWidth>
                <Default>0.5pt</Default>
              </BorderWidth>
            </Style>
            <Height>0.82011cm</Height>
          </Rectangle>
          <Rectangle Name="rectangle2">
            <Left>0.07672cm</Left>
            <ZIndex>1</ZIndex>
            <ReportItems>
              <Textbox Name="sForm">
                <rd:DefaultName>sForm</rd:DefaultName>
                <Top>0.05291cm</Top>
                <Width>3.33333cm</Width>
                <Style>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <ZIndex>2</ZIndex>
                <CanGrow>true</CanGrow>
                <Left>6.69312cm</Left>
                <Height>0.63492cm</Height>
                <Value>=Fields!sForm.Value</Value>
              </Textbox>
              <Textbox Name="sYearLevel">
                <rd:DefaultName>sYearLevel</rd:DefaultName>
                <Top>0.05291cm</Top>
                <Width>6.65741cm</Width>
                <Style>
                  <TextAlign>Right</TextAlign>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <ZIndex>1</ZIndex>
                <CanGrow>true</CanGrow>
                <Left>11.22222cm</Left>
                <Height>0.63492cm</Height>
                <Value>=Fields!sYearLevel.Value</Value>
              </Textbox>
              <Textbox Name="sName">
                <rd:DefaultName>sName</rd:DefaultName>
                <Top>0.05291cm</Top>
                <Width>4.25cm</Width>
                <Style>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <CanGrow>true</CanGrow>
                <Left>0.26455cm</Left>
                <Height>0.63492cm</Height>
                <Value>=Fields!sName.Value</Value>
              </Textbox>
            </ReportItems>
            <Top>1.34127cm</Top>
            <Width>17.98545cm</Width>
            <Style>
              <BorderStyle>
                <Default>Solid</Default>
              </BorderStyle>
              <BorderWidth>
                <Default>0.5pt</Default>
              </BorderWidth>
            </Style>
            <Height>0.7672cm</Height>
          </Rectangle>
          <Rectangle Name="rectangle1">
            <Left>0.07672cm</Left>
            <ReportItems>
              <Textbox Name="textbox1">
                <rd:DefaultName>textbox1</rd:DefaultName>
                <Top>0.18519cm</Top>
                <Width>12.75cm</Width>
                <Style>
                  <TextAlign>Right</TextAlign>
                  <PaddingLeft>2pt</PaddingLeft>
                  <PaddingRight>2pt</PaddingRight>
                  <PaddingTop>2pt</PaddingTop>
                  <PaddingBottom>2pt</PaddingBottom>
                </Style>
                <CanGrow>true</CanGrow>
                <Left>5.18254cm</Left>
                <Height>0.63492cm</Height>
                <Value>ELISABETH MURDOCH COLLEGE</Value>
              </Textbox>
            </ReportItems>
            <Top>0.09127cm</Top>
            <Width>17.98545cm</Width>
            <Style>
              <BorderStyle>
                <Default>Solid</Default>
              </BorderStyle>
              <BorderWidth>
                <Default>0.5pt</Default>
              </BorderWidth>
            </Style>
            <Height>1cm</Height>
          </Rectangle>
        </ReportItems>
        <Top>0.07937cm</Top>
        <PageBreakAtEnd>true</PageBreakAtEnd>
        <PageBreakAtStart>true</PageBreakAtStart>
        <Height>27.24471cm</Height>
      </List>
    </ReportItems>
    <Height>27.54762cm</Height>
  </Body>
  <Language>en-US</Language>
  <PageHeight>29.7cm</PageHeight>
</Report>
 
Related Solutions
Keywords: Microsoft Reporting - rdlc list wont pa…
 
Loading Advertisement...
 
[+][-]09/13/09 11:27 PM, ID: 25323179Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: MS SQL Reporting, SQL Reporting, Programming for ASP.NET
Sign Up Now!
Solution Provided By: ValentinoV
Participating Experts: 1
Solution Grade: A
 
[+][-]09/11/09 01:14 AM, ID: 25307452Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/13/09 04:52 PM, ID: 25322334Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92 - Hierarchy / EE_QW_3_20080625