<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.us.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>1 Apr 2016 15:04:00 Z</lastBuildDate><pubDate>1 Apr 2016 13:59:00 Z</pubDate><description>File is string&#13;
&#13;
//Picker to choose the document to open&#13;
sFile = fSelect(fExeDir(),"","Open","PDF file (*.PDF)"+ TAB + "*.pdf","*.pdf",fPathUNICODE)&#13;
&#13;
&#13;
///////// Managing the list of the last 5 documents opened /////////&#13;
//Checks whether the document is already found in the list&#13;
nSubscript is int = ListSeek(COMBO_LastDocs,sFile,True)&#13;
IF nSubscript = -1 THEN&#13;
&#13;
//It is not there&#13;
//If 5 documents are already found in the list of last 5 opened documents, delete the last one&#13;
IF COMBO_LastDocs..Occurrence = 5 THEN&#13;
ListDelete(COMBO_LastDocs,5)&#13;
END&#13;
&#13;
ELSE&#13;
&#13;
//It is already there&#13;
//Delete it from its former position and place it in 1st position&#13;
ListDelete(COMBO_LastDocs,nSubscript)&#13;
&#13;
END&#13;
&#13;
//Add the document that was opened in 1st position in the list&#13;
ListInsert(COMBO_LastDocs,sFile,1)&#13;
//Select it&#13;
ListSelectPlus(COMBO_LastDocs,1)&#13;
//And display this document&#13;
ExecuteProcess(COMBO_LastDocs,trtSelection)&#13;
&#13;
&#13;
&#13;
try this code but&#13;
not open this pdf file password " 123"</description><ttl>30</ttl><generator>WEBDEV</generator><language>en_US</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/57158-password-protected-pdf-file-open/read.awp</link><title>password protected pdf file open</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/57158-password-protected-pdf-file-open-57159/read.awp</comments><pubDate>1 Apr 2016 15:04:00 Z</pubDate><description>Vijay,&#13;
&#13;
I can't see in your code what you are trying to do with the pdf files, you are only filling one list with the file nam…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/57158-password-protected-pdf-file-open-57159/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/57158-password-protected-pdf-file-open-57159/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/57158-password-protected-pdf-file-open/read.awp">password protected pdf file open</source><title>Re: password protected pdf file open</title></item></channel></rss>
