Platforms to show: All Mac Windows Linux Cross-Platform
/DynaPDF/Web Edition/Clickable Links in Web Edition/Clickable Links in Web Edition
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/Web Edition/Clickable Links in Web Edition/Clickable Links in Web Edition
This example is the version from Sat, 14th Jan 2022.
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/Web Edition/Clickable Links in Web Edition/Clickable Links in Web Edition
This example is the version from Sat, 14th Jan 2022.
Project "Clickable Links in Web Edition.xojo_binary_project"
Class App Inherits WebApplication
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 msg as string
// 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
msg="A warning occurred while processing your PDF code."
else
msg="An error occurred while processing your PDF code."
end if
msg = msg + EndOfLine + EndOfLine + str(ErrorCode)+": "+ErrorMessage
MessageBox msg
IgnoreWarnings = true
Return 0 // ignore
End EventHandler
Property IgnoreWarnings As Boolean
End Class
Class MyWebImageView Inherits WebImageViewer
EventHandler Sub Pressed(x as Integer, y as Integer)
Me.GoToURL TargetURL
End EventHandler
Property TargetURL As string
End Class
End Project
See also:
- /DynaPDF/Web Edition/Cards Web1
- /DynaPDF/Web Edition/Cards Web2
- /DynaPDF/Web Edition/Create PDF Web1
- /DynaPDF/Web Edition/Create PDF Web2
- /DynaPDF/Web Edition/Web RTF to PDF Web1
- /DynaPDF/Web Edition/Web RTF to PDF Web2
- /DynaPDF/Web Edition/WebPDF Web1
- /DynaPDF/Web Edition/WebPDF Web2
- /DynaPDF/Web Edition/WebPicture from PDF Page Web1
- /DynaPDF/Web Edition/WebPicture from PDF Page Web2
The items on this page are in the following plugins: MBS DynaPDF Plugin.
Feedback: Report problem or ask question.
