Platforms to show: All Mac Windows Linux Cross-Platform

/DynaPDF/Tables/DynaPDF Table Multi Page


Required plugins for this example: MBS DynaPDF Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /DynaPDF/Tables/DynaPDF Table Multi Page

This example is the version from Wed, 14th Sep 2021.

Project "DynaPDF Table Multi Page.xojo_binary_project"
Class App Inherits Application
Const AllColumns = -1
Const AllRows = -1
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
EventHandler Sub Open() InitCustomer InitArticles CreateInvoices quit End EventHandler
Sub AddAddress(pdf as DynaPDFMBS, record as Customer) dim table as DynaPDFTableMBS dim rowNum as integer = 0 // Address field top left table = pdf.CreateTable(4, 1, 200.0, 8.0) // The default font size is 10.0 call table.SetFont(AllRows, AllColumns, "Arial", pdf.kfsRegular, true, pdf.kcpUnicode) 'call table.SetGridVerticalColor(255, 0, 0) 'call table.SetGridHorizontalColor(0, 255, 0) 'call table.SetBorderColor(-1, -1, 0, 0, 255) 'call table.SetBorderWidth(-1, -1, 1.0, 1.0, 1.0, 1.0) 'call table.SetGridWidth(1,1) rowNum = table.AddRow call table.SetFontSize(rowNum, 0, 8.0) call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, "Der Supermarkt.de") 'call table.SetBackColor(rowNum, 0, 255, 0, 0) rowNum = table.AddRow call table.SetCellSpacing(rowNum, AllColumns, 0.0, 0.0, -1.5, 0.0) call table.SetFontSize(AllRows, AllColumns, 8.0) call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, "Flaßkamp 8, 58579 Schalksmühle") 'call table.SetTextColor(rowNum, 0, 0, 255, 255) rowNum = table.AddRow call table.SetCellSpacing(rowNum, AllColumns, 0.0, 0.0, 3.0, 0.0) call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, Record.Company) 'call table.SetTextColor(rowNum, 0, 0, 0, 255) rowNum = table.AddRow call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, Record.ContactPerson) 'call table.SetTextColor(rowNum, 0, 0, 0, 255) rowNum = table.AddRow call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, Record.Street) rowNum = table.AddRow call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, Record.Zip + " "+record.City) // Draw the table and delete it call table.DrawTable(55.0, 150.0) table = nil End Sub
Sub AddArticleTable(pdf as DynaPDFMBS, record as Customer) dim price as Double dim table as DynaPDFTableMBS dim rowNum as integer = 0 rowNum = 0 table = pdf.CreateTable(20, 5, 485.0, 10.0) call table.SetColWidth(0, 28.0, false) call table.SetColWidth(1, 60.0, false) call table.SetColWidth(2, 250.0, false) call table.SetColWidth(3, 40.0, false) // The default font size is 10 units... call table.SetFont(AllRows, AllColumns, "Arial", pdf.kfsRegular, true, pdf.kcpUnicode) // Header row rowNum = table.AddRow call table.SetFont(rowNum, AllColumns, "Arial", pdf.kfsBold, true, pdf.kcpUnicode) call table.SetBorderWidth(rowNum, AllColumns, 0.0, 0.0, 0.5, 0.5) call table.SetCellPadding(rowNum, AllColumns, 0.0, 0.0, 2.0, 2.0) call table.SetCellSpacing(rowNum, AllColumns, 0.0, 0.0, 0.0, 2.0) call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, "Pos.") call table.SetCellText(rowNum, 1, pdf.ktaLeft, table.kcoCenter, "Art-Nr.") call table.SetCellText(rowNum, 2, pdf.ktaLeft, table.kcoCenter, "Bezeichnung") call table.SetCellText(rowNum, 3, pdf.ktaCenter, table.kcoCenter, "Menge") call table.SetCellText(rowNum, 4, pdf.ktaRight, table.kcoCenter, "Betrag") // mark this row as being a header row, so it's repeated on all pages call table.SetFlags(rowNum, 0, table.ktfHeaderRow) // Add purchased articles dim num as integer = 1 dim count as integer = 5+rnd*50 dim quantity as integer = 0 dim prices(0) as Double // 0 as first row is header dim total as Double for i as integer = 1 to count dim art as Article = Articles(rnd*(UBound(Articles)+1)) rowNum = table.AddRow call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, str(num)) call table.SetCellText(rowNum, 1, pdf.ktaLeft, table.kcoCenter, str(art.ArtNr)) call table.SetCellText(rowNum, 2, pdf.ktaLeft, table.kcoCenter, art.Description) quantity = 1+rnd*9 call table.SetCellText(rowNum, 3, pdf.ktaCenter, table.kcoCenter, str(quantity)) price = (quantity * art.SinglePrice) prices.append price total = total + price call table.SetCellText(rowNum, 4, pdf.ktaRight, table.kcoCenter, Format(price, "0.00")+"€") num = num + 1 next // Draw the table in chunks filling page dim sum as Double do dim y as double = table.DrawTable( 55.0, 350.0, 350) + 352.0 // now add all the prices we just draw to the sum dim firstRow as integer = table.GetFirstRow if firstRow = 0 then // do not sum up header row firstRow = 1 end if dim nextRow as integer = table.GetNextRow dim u as integer = nextRow-1 'if u>UBound(prices) then u = UBound(prices) for i as integer = firstRow to u sum = sum + prices(i) next // draw footer if table.HaveMore then AddBottomTable pdf, sum, y, true call pdf.EndPage call pdf.Append table.SetPDF pdf AddAddress pdf, record AddCompanyInfo pdf, record else if sum <> total then // something wrong? break end if AddBottomTable pdf, sum, y, false exit end if loop End Sub
Sub AddBottomTable(pdf as DynaPDFMBS, sum as Double, y as Double, MoreComing as Boolean) dim table as DynaPDFTableMBS dim rowNum as integer = 0 rowNum = 0 table = pdf.CreateTable(2, 2, 485.0, 10.0) call table.SetColWidth(0, 200.0, false) call table.SetCellPadding(AllRows, AllColumns, 0.0, 0.0, 2.0, 2.0) call table.SetCellSpacing(AllRows, AllColumns, 0.0, 0.0, 0.0, 2.0) call table.SetFont(AllRows, AllColumns, "Arial", pdf.kfsRegular, true, pdf.kcpUnicode) if MoreComing then rowNum = table.AddRow 'call table.SetBorderWidth(rowNum, AllColumns, 0.0, 0.0, 0.5, 0.0) call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, "Zwischenbetrag") call table.SetCellText(rowNum, 1, pdf.ktaRight, table.kcoCenter, Format(sum, "0.00")+"€") else rowNum = table.AddRow 'call table.SetBorderWidth(rowNum, AllColumns, 0.0, 0.0, 0.5, 0.0) call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, "Nettobetrag") call table.SetCellText(rowNum, 1, pdf.ktaRight, table.kcoCenter, Format(sum, "0.00")+"€") rowNum = table.AddRow 'call table.SetBorderWidth(rowNum, AllColumns, 0.0, 0.0, 0.5, 0.0) dim tax as Double = sum * 0.19 call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, "Umsatzsteuer 19%") call table.SetCellText(rowNum, 1, pdf.ktaRight, table.kcoCenter, Format( tax, "0.00")+"€") rowNum = table.AddRow call table.SetFont(rowNum, AllColumns, "Arial", pdf.kfsBold, true, pdf.kcpUnicode) call table.SetBorderWidth(rowNum, AllColumns, 0.0, 2.0, 0.0, 0.0) call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, "Gesamtbetrag") call table.SetCellText(rowNum, 1, pdf.ktaRight, table.kcoCenter, Format(sum + tax, "0.00")+"€") end if call table.DrawTable( 55.0, y) End Sub
Sub AddCompanyInfo(pdf as DynaPDFMBS, Record as Customer) dim rowNum as integer dim table as DynaPDFTableMBS dim d as new date // Top right header rowNum = 0 table = pdf.CreateTable(13, 2, 200.0, 8.0) call table.SetColWidth(1, 90.0, false) call table.SetFont(AllRows, AllColumns, "Arial", pdf.kfsRegular, true, pdf.kcpUnicode) call table.SetFontSize(AllRows, AllColumns, 8.0) call table.SetCellSpacing(AllRows, AllColumns, 8.0, 0.0, 0.0, 0.0) rowNum = table.AddRow call table.SetFont(rowNum, AllColumns, "Arial", pdf.kfsBold, true, pdf.kcpUnicode) call table.SetCellText(rowNum, 0, pdf.ktaRight, table.kcoCenter, "Datum") call table.SetCellText(rowNum, 1, pdf.ktaLeft, table.kcoCenter, d.AbbreviatedDate) rowNum = table.AddRow call table.SetCellSpacing(rowNum, AllColumns, 8.0, 0.0, 5.0, 0.0) call table.SetFont(rowNum, AllColumns, "Arial", pdf.kfsBold, true, pdf.kcpUnicode) call table.SetCellText(rowNum, 0, pdf.ktaRight, table.kcoCenter, "Kundennummer") call table.SetCellText(rowNum, 1, pdf.ktaLeft, table.kcoCenter, str(Record.CustomerNr)) rowNum = table.AddRow call table.SetFont(rowNum, AllColumns, "Arial", pdf.kfsBold, true, pdf.kcpUnicode) call table.SetCellText(rowNum, 0, pdf.ktaRight, table.kcoCenter, "Auftragsnummer") call table.SetCellText(rowNum, 1, pdf.ktaLeft, table.kcoCenter, str(Record.OrderNr)) rowNum = table.AddRow call table.SetFont(rowNum, AllColumns, "Arial", pdf.kfsBold, true, pdf.kcpUnicode) call table.SetCellText(rowNum, 0, pdf.ktaRight, table.kcoCenter, "Ihre USt-ID") call table.SetCellText(rowNum, 1, pdf.ktaLeft, table.kcoCenter, Record.TaxID) rowNum = table.AddRow call table.SetCellSpacing(rowNum, AllColumns, 8.0, 0.0, 5.0, 0.0) call table.SetFont(rowNum, AllColumns, "Arial", pdf.kfsBold, true, pdf.kcpUnicode) call table.SetCellText(rowNum, 0, pdf.ktaRight, table.kcoCenter, "Sie haben noch Fragen zu Ihrer Rechnung?") call table.SetCellText(rowNum, 1, pdf.ktaLeft, table.kcoCenter, "Sie erreichen uns unter:") rowNum = table.AddRow call table.SetCellSpacing(rowNum, AllColumns, 8.0, 0.0, 5.0, 0.0) call table.SetFont(rowNum, AllColumns, "Arial", pdf.kfsBold, true, pdf.kcpUnicode) call table.SetCellText(rowNum, 0, pdf.ktaRight, table.kcoCenter, "Telefon") call table.SetCellText(rowNum, 1, pdf.ktaLeft, table.kcoCenter, "++49 2355 50 97 25") rowNum = table.AddRow call table.SetFont(rowNum, AllColumns, "Arial", pdf.kfsBold, true, pdf.kcpUnicode) call table.SetCellText(rowNum, 0, pdf.ktaRight, table.kcoCenter, "Telefax") call table.SetCellText(rowNum, 1, pdf.ktaLeft, table.kcoCenter, "++49 2355 50 97 26") rowNum = table.AddRow call table.SetFont(rowNum, AllColumns, "Arial", pdf.kfsBold, true, pdf.kcpUnicode) call table.SetCellText(rowNum, 0, pdf.ktaRight, table.kcoCenter, "Email") call table.SetCellText(rowNum, 1, pdf.ktaLeft, table.kcoCenter, "info@dynaforms.de") // Draw the table and delete it call table.DrawTable(340.0, 145.0) table = nil End Sub
Sub AddInvoiceNumber(pdf as DynaPDFMBS) // Rechnungsnummer call pdf.ChangeFontSize(14.0) call pdf.WriteText(55.0, 320.0, "Rechnung Nr. "+Format(Rnd*1000000,"0")) End Sub
Sub CreateInvoices() const NUM_PAGES = 1000 dim r as new random dim pdf as new MyDynaPDFMBS dim ofile as FolderItem = SpecialFolder.Desktop.Child("DynaPDF Table Invoice Multi Page Example.pdf") dim ifile as FolderItem = FindFile("invoice template.pdf") call pdf.CreateNewPDF(ofile) call pdf.SetImportFlags( Bitwiseor(pdf.kifImportAll, pdf.kifImportAsPage)) call pdf.OpenImportFile(ifile, pdf.kptOpen, "") dim tmpl as integer = pdf.ImportPage(1) call pdf.CloseImportFile call pdf.SetPageCoords(pdf.kpcTopDown) for i as integer = 1 to NUM_PAGES call pdf.Append call pdf.SetFont("Arial", pdf.kfsRegular, 8.0, true, pdf.kcpUnicode) // Statischer Hintergrund call pdf.PlaceTemplateEx(tmpl, 0.0, 0.0, 0.0, 0.0) // Rechnung mit Daten füllen dim idx as integer = r.InRange(0,UBound(Customers)) FillPage PDF, Customers(idx) call pdf.EndPage next // Add page numbers 'dim pageCount as integer = pdf.GetPageCount 'for i as integer = 1 to NUM_PAGES ' 'call pdf.EditPage(i) ' 'call pdf.SetFont("Arial", pdf.kfsRegular, 8.0, true, pdf.kcpUnicode) 'call pdf.WriteText(466.0, 681.5, str(i)+" of "+str(pageCount)) ' 'call pdf.EndPage 'next call pdf.CloseFile ofile.Launch(true) End Sub
Sub FillPage(pdf as DynaPDFMBS, record as Customer) AddAddress pdf, record AddCompanyInfo pdf, record AddInvoiceNumber pdf AddArticleTable pdf, record End Sub
Function FindFile(name as string) As FolderItem // Look for file in parent folders from executable on dim parent as FolderItem = app.ExecutableFile.Parent while parent<>Nil dim file as FolderItem = parent.Child(name) if file<>Nil and file.Exists then Return file end if parent = parent.Parent wend End Function
Sub InitArticles() Articles.Append new Article(3224567, "Brathänchen (800g)", 12.49) Articles.Append new Article(5678321, "200g Aufschnitt", 1.98) Articles.Append new Article(4559021, "Bratwurst 10er Pack", 4.49) Articles.Append new Article(5679803, "1 Kg Handwaschpaste Deluxe", 8.22) Articles.Append new Article(5447891, "Zahnpasta Erdber Geschmack - this is a cell with lots of text to wrap", 0.99) Articles.Append new Article(2342389, "500g Ravioli", 1.78) Articles.Append new Article(1227432, "Mülleimer klein", 21.22) End Sub
Sub InitCustomer() customers.Append new Customer("Gesellschaft für Entwicklung und Ökologie des deutschen Nahrungsmittelwesens",_ "Frau Stefan",_ "Raketenstraße 2",_ "38462",_ "Ravensberg",_ 100003457,_ "-",_ "-") customers.Append new Customer("Rewe",_ "Herr Walter von Straußenberg",_ "Am kleinen Wäldchen 123",_ "56890",_ "Bad Berleburg",_ 100003434,_ "-",_ "-") customers.Append new Customer("Hit",_ "Frau Ingrid Wolter",_ "Lüdenscheider Straße 433",_ "58515",_ "Lüdenscheid",_ 100002447,_ "-",_ "-") customers.Append new Customer("Kaufpark",_ "Herr Gerald Ostheim",_ "Heedfelder Straße 33",_ "43312",_ "Wuppertal",_ 100005632,_ "-",_ "-") customers.Append new Customer("Aldi",_ "Frau Sabine Schnellstadt",_ "Bredde 36",_ "98834",_ "München",_ 100003129,_ "-",_ "-") customers.Append new Customer("Lidle",_ "Herr Manfred Klein",_ "Am Park 2",_ "67890",_ "Frankfurt am Main",_ 100009001,_ "-",_ "-") End Sub
Sub WriteArticle(pdf as DynaPDFMBS, x as Double, y as Double, pos as integer, art as Article, quantity as integer, byref sum as Double) dim price as Double call pdf.WriteFTextEx( x, y, 20.0, -1.0, pdf.ktaCenter, str(pos)) call pdf.WriteText(x + 33.0, y - 10.0, str(Art.ArtNr)) call pdf.WriteFTextEx(x + 92.0, y, 200.0, -1.0, pdf.ktaLeft, Art.Description) call pdf.WriteFTextEx(x + 335.0, y, 40.0, -1.0, pdf.ktaCenter, str(Quantity)) price = (Quantity * Art.SinglePrice) Sum = sum + price call pdf.WriteFTextEx(x + 423.0, y, 60.0, -1.0, pdf.ktaRight, Format(price, "0.00")+" €") End Sub
Property Articles() As Article
Property Customers() As Customer
End Class
MenuBar MenuBar1
MenuItem FileMenu = "&Ablage"
MenuItem FileQuit = "#App.kFileQuit"
MenuItem EditMenu = "&Bearbeiten"
MenuItem EditUndo = "&Rückgängig"
MenuItem UntitledMenu1 = "-"
MenuItem EditCut = "&Ausschneiden"
MenuItem EditCopy = "&Kopieren"
MenuItem EditPaste = "&Einfügen"
MenuItem EditClear = "#App.kEditClear"
MenuItem UntitledMenu0 = "-"
MenuItem EditSelectAll = "&Alles auswählen"
End MenuBar
Class Window1 Inherits Window
End Class
Class Customer
Sub Constructor(pCompany as string, pContactPerson as string, pStreet as string, pZip as string, pCity as string, pCustomerNr as integer, pOrderNr as string, pTaxID as string) city = pCity company = pCompany ContactPerson = pContactPerson CustomerNr = pCustomerNr OrderNr = pOrderNr Street = pStreet TaxID = pTaxID Zip = pZip End Sub
Property City As String
Property Company As string
Property ContactPerson As string
Property CustomerNr As Integer
Property OrderNr As string
Property Street As String
Property TaxID As string
Property Zip As String
End Class
Class Article
Sub Constructor(pArtNr as integer, pDescription as string, pSinglePrice as double) ArtNr = pArtNr Description = pDescription SinglePrice = pSinglePrice End Sub
Property ArtNr As Integer
Property Description As String
Property SinglePrice As Double
End Class
Class MyDynaPDFMBS Inherits DynaPDFMBS
EventHandler Function Error(ErrorCode as integer, ErrorMessage as string, ErrorType as integer) As integer // output all messages on the console: System.DebugLog str(ErrorCode)+": "+ErrorMessage // and display dialog: Dim d as New MessageDialog //declare the MessageDialog object Dim b as MessageDialogButton //for handling the result d.icon=MessageDialog.GraphicCaution //display warning icon d.ActionButton.Caption="Continue" d.CancelButton.Visible=True //show the Cancel button // a warning or an error? if BitAnd(ErrorType, me.kE_WARNING) = me.kE_WARNING then // if user decided to ignore, we'll ignore if IgnoreWarnings then Return 0 d.Message="A warning occurred while processing your PDF code." // we add a third button to display all warnings d.AlternateActionButton.Caption = "Ignore warnings" d.AlternateActionButton.Visible = true else d.Message="An error occurred while processing your PDF code." end if d.Explanation = str(ErrorCode)+": "+ErrorMessage b=d.ShowModal //display the dialog Select Case b //determine which button was pressed. Case d.ActionButton Return 0 // ignore Case d.AlternateActionButton IgnoreWarnings = true Return 0 // ignore Case d.CancelButton Return -1 // stop End select End EventHandler
Property IgnoreWarnings As Boolean
End Class
End Project

See also:

The items on this page are in the following plugins: MBS DynaPDF Plugin.


The biggest plugin in space...