Platforms to show: All Mac Windows Linux Cross-Platform
/DynaPDF/Tables/Dynamic Table/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/Dynamic Table/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()
// pCompany as string, pContactPerson as string, pStreet as string, pZip as string, pCity as string, pCustomerNr as integer, pOrderNr as string, pTaxID as string
MainWindow.show
Customer = new Customer(MainWindow.Company.text, MainWindow.Person.text, MainWindow.Street.text, MainWindow.Zip.text, MainWindow.City.text, val(MainWindow.CustomerNr.text), MainWindow.OrderNr.text, MainWindow.TaxID.Text)
'RegisterPlugins
'RegisterDynaPDF
InitCustomer
InitArticles
MainWindow.show
PDFWindow.Left = MainWindow.Left + 20+MainWindow.Width
PDFWindow.show
PDFWindow.update
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.SetFontSize(AllRows, AllColumns, 12.0)
if MainWindow.CheckBox2.Value then
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)
end if
rowNum = table.AddRow
call table.SetFontSize(rowNum, 0, 8.0)
call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, "Der Supermarkt.de")
if MainWindow.CheckBox2.Value then
call table.SetBackColor(rowNum, 0, 255, 0, 0)
end if
call table.SetFont(rowNum, AllColumns, "Arial", pdf.kfsBold, true, pdf.kcpUnicode)
rowNum = table.AddRow
call table.SetCellSpacing(rowNum, AllColumns, 0.0, 0.0, -1.5, 0.0)
call table.SetFontSize(rowNum, AllColumns, 8.0)
call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, "Flaßkamp 8, 58579 Schalksmühle")
call table.SetFont(rowNum, AllColumns, "Arial", pdf.kfsBold, true, pdf.kcpUnicode)
if MainWindow.CheckBox2.Value then
call table.SetTextColor(rowNum, 0, 0, 255, 255)
end if
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)
if MainWindow.CheckBox2.Value then
call table.SetTextColor(rowNum, 0, 0, 0, 255)
end if
rowNum = table.AddRow
call table.SetCellText(rowNum, 0, pdf.ktaLeft, table.kcoCenter, Record.ContactPerson)
if MainWindow.CheckBox2.Value then
call table.SetTextColor(rowNum, 0, 0, 0, 255)
end if
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 = 50 '5+rnd*50
dim quantity as integer = 0
dim prices(0) as Double // 0 as first row is header
dim total as Double
static Articles as new Dictionary
static quantities as new Dictionary
for i as integer = 1 to count
dim art as Article = Articles.Lookup(i, nil)
if art = nil then
art = self.Articles(rnd*(UBound(self.Articles)+1))
Articles.Value(i) = art
end if
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 = quantities.Lookup(i, 0)
if quantity=0 then
quantity = 1+rnd*9
quantities.Value(i) = quantity
end if
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+MainWindow.slider1.value, 350-MainWindow.slider1.value) + 352.0+MainWindow.slider1.value
// 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, 0.0, 0.5, 2.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+MainWindow.slider1.value, "Rechnung Nr. "+MainWindow.InvoiceNumber.text)
End Sub
Function CreateInvoices() As MyDynaPDFMBS
const NUM_PAGES = 1
dim r as new random
dim pdf as new MyDynaPDFMBS
dim ifile as FolderItem
Select case MainWindow.PopupMenu1.ListIndex
case 1 //
ifile = FindFile("MBS.pdf")
else
ifile = FindFile("invoice template.pdf")
end Select
call pdf.CreateNewPDF(nil)
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, Customer
call pdf.EndPage
next
Return pdf
End Function
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 UpdateCustomer()
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 Customer As Customer
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 MainWindow Inherits Window
Control Label1 Inherits Label
ControlInstance Label1 Inherits Label
End Control
Control PopupMenu1 Inherits PopupMenu
ControlInstance PopupMenu1 Inherits PopupMenu
EventHandler Sub Change()
PDFWindow.update
End EventHandler
EventHandler Sub Open()
me.AddRow "test"
me.AddRow "MBS"
End EventHandler
End Control
Control BevelButton1 Inherits BevelButton
ControlInstance BevelButton1 Inherits BevelButton
EventHandler Sub Action()
PDFWindow.page = 1
PDFWindow.update
End EventHandler
End Control
Control BevelButton2 Inherits BevelButton
ControlInstance BevelButton2 Inherits BevelButton
EventHandler Sub Action()
PDFWindow.page = PDFWindow.page+1
PDFWindow.update
End EventHandler
End Control
Control Label2 Inherits Label
ControlInstance Label2 Inherits Label
End Control
Control InvoiceNumber Inherits TextField
ControlInstance InvoiceNumber Inherits TextField
EventHandler Sub TextChange()
PDFWindow.Update
End EventHandler
End Control
Control Label3 Inherits Label
ControlInstance Label3 Inherits Label
End Control
Control Company Inherits TextField
ControlInstance Company Inherits TextField
EventHandler Sub TextChange()
app.customer.Company = me.Text
PDFWindow.Update
End EventHandler
End Control
Control Label4 Inherits Label
ControlInstance Label4 Inherits Label
End Control
Control City Inherits TextField
ControlInstance City Inherits TextField
EventHandler Sub TextChange()
app.customer.City = me.Text
PDFWindow.Update
End EventHandler
End Control
Control Person Inherits TextField
ControlInstance Person Inherits TextField
EventHandler Sub TextChange()
app.customer.ContactPerson = me.Text
PDFWindow.Update
End EventHandler
End Control
Control Label5 Inherits Label
ControlInstance Label5 Inherits Label
End Control
Control Label6 Inherits Label
ControlInstance Label6 Inherits Label
End Control
Control CustomerNr Inherits TextField
ControlInstance CustomerNr Inherits TextField
EventHandler Sub TextChange()
app.customer.CustomerNr = val(me.Text)
PDFWindow.Update
End EventHandler
End Control
Control OrderNr Inherits TextField
ControlInstance OrderNr Inherits TextField
EventHandler Sub TextChange()
app.customer.OrderNr = me.Text
PDFWindow.Update
End EventHandler
End Control
Control Label7 Inherits Label
ControlInstance Label7 Inherits Label
End Control
Control Label8 Inherits Label
ControlInstance Label8 Inherits Label
End Control
Control Street Inherits TextField
ControlInstance Street Inherits TextField
EventHandler Sub TextChange()
app.customer.Street = me.Text
PDFWindow.Update
End EventHandler
End Control
Control Label9 Inherits Label
ControlInstance Label9 Inherits Label
End Control
Control TaxID Inherits TextField
ControlInstance TaxID Inherits TextField
EventHandler Sub TextChange()
app.customer.TaxID = me.Text
PDFWindow.Update
End EventHandler
End Control
Control Zip Inherits TextField
ControlInstance Zip Inherits TextField
EventHandler Sub TextChange()
app.customer.zip = me.Text
PDFWindow.Update
End EventHandler
End Control
Control Label10 Inherits Label
ControlInstance Label10 Inherits Label
End Control
Control CheckBox1 Inherits CheckBox
ControlInstance CheckBox1 Inherits CheckBox
EventHandler Sub Action()
if me.Value then
PDFWindow.Width = 595*2
PDFWindow.Height = 842*2
else
PDFWindow.Width = 595
PDFWindow.Height = 842
end if
PDFWindow.Update
End EventHandler
End Control
Control CheckBox2 Inherits CheckBox
ControlInstance CheckBox2 Inherits CheckBox
EventHandler Sub Action()
PDFWindow.Update
End EventHandler
End Control
Control Slider1 Inherits Slider
ControlInstance Slider1 Inherits Slider
EventHandler Sub ValueChanged()
PDFWindow.Update
End EventHandler
End Control
Control PushButton1 Inherits PushButton
ControlInstance PushButton1 Inherits PushButton
EventHandler Sub Action()
dim pdf as MyDynaPDFMBS = app.CreateInvoices
if pdf.HaveOpenDoc then
dim f as FolderItem = GetSaveFolderItem(FileTypes1.Pdf, "test.pdf")
if f<>Nil then
if pdf.OpenOutputFile(f) then
call pdf.CloseFile
f.Launch
end if
end if
end if
End EventHandler
End Control
Control Label11 Inherits Label
ControlInstance Label11 Inherits Label
End Control
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
Class PDFWindow Inherits Window
EventHandler Function KeyDown(Key As String) As Boolean
// Next page with space
if asc(key)=32 then
page = page +1
render
redraw
Return true
end if
// render all pages with enter
if asc(key)=13 then
RenderAllPages
Return true
end if
End EventHandler
EventHandler Function MouseDown(X As Integer, Y As Integer) As Boolean
render
redraw
Return true
End EventHandler
EventHandler Sub Open()
page = 1
End EventHandler
EventHandler Sub Paint(g As Graphics, areas() As REALbasic.Rect)
'g.ClearRect 0, 0, g.Width, g.Height
if pic<>Nil then
g.DrawPicture pic,0,0
end if
End EventHandler
EventHandler Sub Resized()
render
redraw
End EventHandler
EventHandler Sub Resizing()
render
redraw
End EventHandler
Sub RenderAllPages()
dim time as integer = ticks
// number of pages in this PDF
dim c as integer = pdf.GetPageCount
// create rasterizer
dim r as new DynaPDFRasterizerMBS(pdf, Width, Height)
// create options object
dim o as new DynaPDFRasterImageMBS
o.InitWhite = true
o.DefScale = o.kpsFitBest
// now raster all pages
for page as integer = 1 to c
// get a page
dim p as DynaPDFPageMBS = pdf.GetPage(page)
// and render it
if not r.RenderPage(p, o) then
MsgBox "Failed to render page "+str(page)
Return
end if
next
MsgBox format((Ticks-time)/60.0,"0.0")+" seconds for "+str(c)+" pages."
// show last page
self.pic = r.Pic
self.Refresh
End Sub
Sub Update()
pdf = app.CreateInvoices
render
redraw
'Title = str(runtime.ObjectCount)+" objects"
End Sub
Sub redraw()
Refresh
End Sub
Sub render()
if pdf <> nil then
if MainWindow.CheckBox1.Value then
pic = pdf.RenderPagePicture(page, 595*2, 842*2, pdf.kpsFitBest)
else
pic = pdf.RenderPagePicture(page, 595, 842, pdf.kpsFitBest)
end if
end if
End Sub
Property page As Integer
Property pdf As MyDynaPDFMBS
Property pic As Picture
End Class
FileTypes1
Filetype application/pdf
End FileTypes1
End Project
The items on this page are in the following plugins: MBS DynaPDF Plugin.