Recent Posts

Pages: [1] 2 3 ... 10
1
Ideas/Suggestions / Re: Filtering on Fields
« Last post by RTT on February 01, 2025, 02:08:43 AM »
That tool has a "DB only" option, in order to save the changes only into the DB.
2
Ideas/Suggestions / Re: Filtering on Fields
« Last post by puckman on January 31, 2025, 09:00:35 PM »
I appreciate the suggestion.  I thought of that before posting my suggestion.  I know that's possible.  I didn't want to bloat the document with custom metadata.

Thank you.
3
Ideas/Suggestions / Re: Filtering on Fields
« Last post by RTT on January 30, 2025, 02:26:42 AM »
It's feasible, but will slow down the filter function with large number of files grids. I will look into it.
Meanwhile, if these calculated columns values are not dynamic, you may use the Edit Info Fields batch tool to transfer these values into a DB custom field. The tool has access to these calculated values, with the [Dn] constants.
4
Ideas/Suggestions / Re: Filtering on Fields
« Last post by puckman on January 28, 2025, 10:40:15 PM »
I would like to see an additional filtering feature.

I have created two calculated columns based on a one in the database.  Currently, the calculated columns do not show up in the list under the Filter tab.

Is this a feasible feature to add in a future version of PDFE?  This would enhance my productivity.
5
Bug reports / Re: Persistent error in PDFE
« Last post by puckman on November 30, 2024, 04:37:27 PM »
Instead of using the Acrobat plugin as the PDFE PDF reader try using the Sumatra PDF one, with the help of the NPAPI interface.
Sumatra PDF stopped delivering the NPAPI plugin with the 3.0 release, so you need to install the old 2.5.2 version (https://www.sumatrapdfreader.org/download-prev), to get the npPDFViewer.dll file. Make sure you select, from the SumatraPDF installer options, the "install browser plugin..." option. You can then install the latest Sumatra PDF over that one. The dll will remain and will still work with the latest versions, even the 64-bit ones.
After you configure PDFE to use it (check attached screenshot) you will have a much more stable reader, without these errors.

Switching the plug-in worked like a charm.
6
General / Re: barcode import list
« Last post by nightslayer23 on November 12, 2024, 01:56:43 AM »
perfect - worked exactly as described - thankyou again  :)
7
General / Re: barcode import list
« Last post by RTT on November 11, 2024, 06:32:40 PM »
From withing the stamp tool, use the above explanation to add a script for the handling of the dynamic functionality (Dynamic Text Stamp Settings button). Name it SelectValueFromCSV, and add this code to it.
Code: [Select]
var Lines = [];

function SelectValueFromCSV(params) {
    var opt = params.split(',');
    if (!Lines.length) {
        var objFSO = new ActiveXObject("Scripting.FileSystemObject");
        var objTextFile = objFSO.OpenTextFile(opt[0], 1 /*ForReading*/ , false, 0);
        while (!objTextFile.AtEndOfStream) {
            var strNextLine = objTextFile.Readline();
            Lines.push(strNextLine.split(','));
        }
        objTextFile.Close();
    }
    return parseInt(Lines[CurrentTask.PageNumber][opt[1]], 10);
}

Now you can call it from any text, or barcode, stamp object, configured as Dynamic, like this:

[<SelectValueFromCSV>](c:\temp\test.csv,0) To fetch the serial number
[<SelectValueFromCSV>](c:\temp\test.csv,1) To fetch the QR code
[<SelectValueFromCSV>](c:\temp\test.csv,2) To fetch the registration code

In this example I'm explicitly typing the path to the csv file (change it to match yours), but you can replace it with the [C1] constant, if you want to have the previous example possibility to call it from a shell context menu item.
Or you may also configure a My Tools stamp tool to have this stamp operation directly accessible from the Shell context menu.

8
Bug reports / Re: Russian characters in info fields
« Last post by RTT on November 11, 2024, 05:15:44 PM »
It is indeed a bug. Thanks for reporting.
9
General / Re: barcode import list
« Last post by nightslayer23 on November 11, 2024, 07:15:07 AM »
attached
10
Bug reports / Russian characters in info fields
« Last post by dohnjoe on November 10, 2024, 08:27:59 PM »
Hi
I had to work with multiple PDF files written in Russian. So I had the filenames of the PDF in Russian and I wanted to fill the Title info field with the filenames.
To my surprise all Russian characters have been replaced by question marks.
Please tell me what is happening and what is the solution.

PS Curious enough, if I had the titles in Russian and I wanted to rename the files using the titles, everything works perfectly.
Pages: [1] 2 3 ... 10