Platforms to show: All Mac Windows Linux Cross-Platform
/DynaPDF/acroform/Fill value
Function:
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/acroform/Fill value
This example is the version from Thu, 18th Jul 2012.
Function:
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/acroform/Fill value
This example is the version from Thu, 18th Jul 2012.
Project "Fill value.xojo_binary_project"
FileTypes
Filetype text
Filetype icc
End FileTypes
MenuBar MenuBar1
MenuItem UntitledMenu1 = ""
MenuItem FileMenu = "&File"
MenuItem FileQuit = "Quit"
MenuItem EditMenu = "&Edit"
MenuItem EditUndo = "&Undo"
MenuItem UntitledMenu0 = "-"
MenuItem EditCut = "Cu&t"
MenuItem EditCopy = "&Copy"
MenuItem EditPaste = "&Paste"
MenuItem EditClear = "Clear"
End MenuBar
Class App Inherits Application
EventHandler Sub Open()
dim pdf as new MyDynapdfMBS
dim d as new date
dim f as integer
dim outFile as FolderItem=SpecialFolder.Desktop.Child("acroform filled.pdf")
// Error messages and warnings are passed to the callback function.
pdf.SetLicenseKey "Lite" // For this example you can use a Lite, Pro or Enterprise License
call pdf.CreateNewPDF(nil)
call pdf.SetDocInfo pdf.kdiCreator, "REALbasic Example Project"
call pdf.SetDocInfo pdf.kdiTitle, "How to create an Interactive Form?"
call pdf.SetDocInfo pdf.kdiAuthor, "Jens Boschulte"
call pdf.SetViewerPreferences(pdf.kvpDisplayDocTitle, pdf.kavNone)
// Conversion of pages to templates is normally not required. Templates are required if
// the page should be scaled or used multiple times in a document, e.g. as a page background.
// See help file for further information.
call pdf.SetImportFlags(pdf.kifImportAll)
dim filePath as FolderItem = SpecialFolder.Desktop.Child("acroform.pdf")
if (pdf.OpenImportFile(filePath, pdf.kptOpen, "") < 0) then
MsgBox "Input file """+filePath.name+""" not found. Please run the other example first to create the fields."
quit
end if
call pdf.ImportPDFFile( 1, 1.0, 1.0)
call pdf.EditPage(1)
// check what fields are there and show in listbox:
dim l as listbox = MainWindow.Listbox1
dim c as integer = pdf.GetFieldCount-1
for i as integer = 0 to c
L.AddRow str(i)
l.Cell(l.LastIndex,1) = pdf.GetFieldName(i)
dim fieldType as integer = pdf.GetFieldType(i)
dim x as string = str(fieldType)
Select case fieldType
case pdf.kftButton
x = "Button"
case pdf.kftCheckBox
x = "CheckBox"
case pdf.kftComboBox
x = "ComboBox"
case pdf.kftGroup
x = "Group"
case pdf.kftListBox
x = "ListBox"
case pdf.kftRadioBtn
x = "RadioBtn"
case pdf.kftText
x = "Text"
end Select
l.Cell(l.LastIndex,2) = x
next
// fill values here:
// a normal text field
f = pdf.FindField("Finanzamt")
if f>=0 then
call pdf.SetTextFieldValue(f, "Mayen", "", pdf.ktaLeft)
end if
f = pdf.FindFieldAnsi("Vorname")
if f>=0 then
call pdf.SetTextFieldValue(f, "Peter", "", pdf.ktaLeft)
end if
// and a combo box field:
f = pdf.FindField("Religion")
if f>=0 then
call pdf.SetFieldExpValue(f, 2, "Kath.", "Kath", true)
end if
// set radiobutton
f = pdf.FindField("AntragsArt")
if f>=0 then
// got the radiobutton, now check the subfields
dim ff as DynaPDFFieldExMBS = pdf.GetFieldEx(f)
dim u as integer = ff.KidCount-1
for i as integer = 0 to u
dim fff as DynaPDFFieldExMBS = ff.Kids(i)
if fff.Value = "Sparzulage" then // found ours
call pdf.SetCheckBoxState(fff.Handle, true) // set it
end if
next
end if
call pdf.EndPage
// No fatal error occurred?
if pdf.HaveOpenDoc then
// OK, now we can open the output file.
if (not pdf.OpenOutputFile(outFile)) then
MsgBox "Make sure that you have write access to the project folder!"
end if
end if
if pdf.CloseFile then
outFile.Launch
end if
End EventHandler
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 MainWindow Inherits Window
Control Listbox1 Inherits Listbox
ControlInstance Listbox1 Inherits Listbox
End Control
End Class
End Project
The items on this page are in the following plugins: MBS DynaPDF Plugin.
