Search found 2 matches

by BeePee
Wed May 22, 2024 4:51 am
Forum: Applications - Feedback and Discussion
Topic: PB.Ex PDF (Windows)
Replies: 9
Views: 9744

Re: PB.Ex PDF (Windows)

Hello,
I would like to add some text to an existing PDF file.
When I run the AddPDFText function, I get the error message
"The value cannot be null. Parameter name page."
I think I need to specify on which page to place the text.
Can you tell me which method to use?
Thanks for your help.
Best ...
by BeePee
Mon Jan 30, 2023 10:03 am
Forum: Coding Questions
Topic: Print Function when using Console
Replies: 7
Views: 1179

Re: Print Function when using Console

Hello,

What is your version of PureBasic?
What OS are you working on?

Could you test with an error handler?

This is an example :

Procedure ErrorHandler()
MessageRequester("Test OnError", "Error: " + ErrorMessage())
; or
;Debug ("Error: " + ErrorMessage())
EndProcedure

OnErrorCall ...