Why are there no more than 6 cells added to the table! 
What should I change to display the other generated cells?



Dim doc As New Document(iTextSharp.text.PageSize.A4, 15, 15, 15, 15)
        Dim name As String = "test.pdf"

        Try

            Dim Writer As PdfWriter = PdfWriter.GetInstance(doc, New
FileStream(Server.MapPath("~/Pdf/") + name, FileMode.Create))
            doc.Open()


            Dim ci As CartItem =
DirectCast(Profile.ShoppingCart._CartItems(ID), CartItem)

            Dim table As PdfPTable = New PdfPTable(6)
            table.WidthPercentage = 100


            For Each ci In Profile.ShoppingCart.CartItems

                Dim nr = ci.Filenumber.ToString()
                Dim jpg As Image = GetInstance(Server.MapPath("~/Images/" &
nr & ".jpg"))
                jpg.ScalePercent(10)

                Dim cell As PdfPCell = New PdfPCell()
                cell.Border = NO_BORDER
                cell.HorizontalAlignment = Element.ALIGN_LEFT
                cell.VerticalAlignment = Element.ALIGN_BOTTOM
                cell.AddElement(jpg)
                table.AddCell(cell)

            Next
     
            doc.Add(table)

        Catch de As DocumentException
            Console.Error.WriteLine(de.Message)
        Catch ioe As IOException
            Console.Error.WriteLine(ioe.Message)
        Finally
            doc.Close()
        End Try

      
    End Sub
-- 
View this message in context: 
http://old.nabble.com/When-adding-10-cells-only-6-are-displayed-in-PdfPTable-tp26264672p26264672.html
Sent from the iText - General mailing list archive at Nabble.com.


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.1t3xt.com/docs/book.php
Check the site with examples before you ask questions: 
http://www.1t3xt.info/examples/
You can also search the keywords list: http://1t3xt.info/tutorials/keywords/

Reply via email to