Version proprety of a PDF with iLogic

Version proprety of a PDF with iLogic

Anonymous
Not applicable
418 Views
2 Replies
Message 1 of 3

Version proprety of a PDF with iLogic

Anonymous
Not applicable

Hello.

 

I'm looking for a function which can read/write a version proprety in a PDF file, like this but for a PDF :

oRevNum = iProperties.Value("Project", "Revision Number")

 

We use the PDF to make some archives of our drawings, and I'd like to use the version proprety on a PDF to check with iLogic if the PDF is the actual PDF or an archive.

 

Best regards

0 Likes
419 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable

Up...

0 Likes
Message 3 of 3

Anonymous
Not applicable

That's what I want to do, but how can I use it with iLogic ?

https://technet.microsoft.com/en-us/library/ee176615.aspx

 

I tried this way, but still not working...

 

Dim sFile As String = "CH00210058.pdf"
Dim oShell = CreateObject("Shell.Application")
Dim oDir = oShell.Namespace("G:\Plans\Outillages")

For i=0 To 10
	MessageBox.Show(oDir.GetDetailsOf(sFile, i)+" "&i, "Title")
Next
0 Likes