Set PDF document title

Hi to all,

I’ve got a problem that simply prints an existing Word document into a PDF. I’m trying to set the PDF title, right now it’s taking the former document’s name as the PDF document title. The more resembling option in the documentation that I’ve found is this property of the clsPDFCreatorOptions class:
Public StandardTitle As String

But It doesn’t seem to work for me…

Dim pdfCreatorObj As PDFCreator.clsPDFCreator
[…]
pdfCreatorObj.cOption("StandardTitle ") = “custom PDF title”
[…]
Anybody knows if this is possible to do? If so, how?

Thanks in advance!

PD: There’s always the option of renaming the original file before converting to PDF… but I’m looking for a cleaner and polite way to do it…

Well, tried again after reinstalling PDF Creator and

pdfCreatorObj.cOption(“StandardTitle”) = "custom PDF title"

is working fine now…