Error message

Access denied. You may need to login below or register to access this page.

Access Denied / User log in

Please let our ADS show!

This sites offers only FREE software and it's supported by a few advertisement boxes (no intrusive popups).
Please:

  • disable your AdBlocker by adding CoolSoft website to whitelist
  • give the proper cookie consent
  • enable JavaScript for this website

This seconds wait is to let you update your browser configuration...

Ok, I've done the required changes... now show me your content!
!!! Please enable JavaScript !!!

Quick login

Use your existing social account to login without registration: no confirmation mail to wait for, no new password to remember, quick, easy, safe.

...or use your CoolSoft account

Enter your CoolSoft username.
Enter the password that accompanies your username.
Add reply | CoolSoft

Add reply

Please let our ADS show!

This sites offers only FREE software and it's supported by a few advertisement boxes (no intrusive popups).
Please:

  • disable your AdBlocker by adding CoolSoft website to whitelist
  • give the proper cookie consent
  • enable JavaScript for this website

This seconds wait is to let you update your browser configuration...

Ok, I've done the required changes... now show me your content!
!!! Please enable JavaScript !!!
(If you're a human, don't change the following field)
Your first name.
(If you're a human, don't change the following field)
Your first name.

Warning!

You're posting your message as anonymous user.

By registering you'll be allowed to receive notifications of post replies and new threads.
Registration is really quick and only requires you to choose an username and provide a valid email address.

Click here to to register.

A confirmation mail will be sent to this address.
Your email address won't be published.

More information about text formats

Filtered HTML

  • Allowed HTML tags: <a> <blockquote> <br> <cite> <code> <dd> <del> <dl> <dt> <em> <img> <li> <ol> <p> <pre> <s> <span> <strike> <strong> <ul>
    Allowed Style properties: background-color, color, font-size, font-style, height, text-align, text-decoration, text-transform, width
  • You can enable syntax highlighting of source code with the following tags: <code>, <blockcode>, <pre>, <c>, <cpp>, <csharp>, <drupal5>, <drupal6>, <javascript>, <php>. The supported tag styles are: <foo>, [foo].
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
Cancel
Posts: 1972
Joined: March 25, 2012 - 01:19
Re: User defined column names

Well, that should be the easiest part; there's a lot of PDF parser libraries available, with different licensing.

The worst part is that you need to be quick in file parsing, otherwise Explorer hangs and becomes somehow unresponsible.
PDFPropertyExtension has its own internal parsing library; I wrote it by myself because I needed something lightweight and blazing fast and I was not ready to make the whole sources public by using a GPL'd library.
...and I'm still not ready for it, sorry ;)

Posts: 2
Joined: February 13, 2019 - 17:29
Re: User defined column names

Thank you for the information. But this information is partial, because I also need to know how to read the meta data from the PDF files. May be you can give some hints where I can find information concerning reading meta information from the PDF files. Thank you in advance.

Dimitri

Posts: 1972
Joined: March 25, 2012 - 01:19
Re: User defined column names

As far as I can understand you not only need to add customized parse for PDF metadata, but also show parsed data in a custom property column ("UD_Direction", "UD_Route") in Windows Explorer, right?

Well, that's a lot of work with a limited benefit, at least for PDFPropertyExtension "standard" users ;)
I agree that your users will benefit from that data being displayed in Explorer detail view, but I can't see a general needing for this feature.

I suggest you to have a look at MSDN documentation about Windows Property system.
https://docs.microsoft.com/it-it/windows/desktop/properties/windows-prop...
https://docs.microsoft.com/it-it/windows/desktop/properties/samples-reci...

It's not that hard to have a working simple custom provider using the provided samples.

This is the list of system properties, already available on clean Windows installation:
https://docs.microsoft.com/it-it/windows/desktop/properties/props

Finally, this is a good start to implement the whole provider (taken from official MS samples):
https://github.com/mnkeddy/Windows-Classic-Samples/tree/master/Samples/W...

Posts: 2
Joined: February 13, 2019 - 17:29
User defined column names

Hi Claudio,

first thank you for the great extension.

For our project we would like to display the user defined meta data values (which are added by our software to the pdf files) in the explorer. For example "UD_Direction", "UD_Route" or similar. First I wanted to write you an email, but than I thought, that this feature could be interesting for the other users. The user defined column names could be read e.g. from the ini file from the same directory as a dll during the registration process, or somehow added during the installation. Is it possible to implement this feature? I can provide the example of the pdf file with some user defined meta data values if you need.

Or may be it is possible for you to share the sourcecode. I would do the modifications myself...

Thank you

Dimitri