Slight correction I found (drove me nuts to say the least!)
Line 1 Example:|FILTER MS Word Files (*.rtf, *.doc,
*.pdf)#*.rtf;*.doc,*.pdf'
Line 2 Example:||FILTER MS Word Files (*.rtf, *.doc,
*.pdf)#*.rtf;*.doc;*.pdf'
Note the ; verses the , between doc and pdf at the end of the line (line
2). Without the ; all I could see was rtf's.
Question for all R:Guru's:
Do you think it would be best to then load these var into a temp table? (the
ones I get that are parsed from ' MULTISELECT ON' ) Then write a script to
read from tTable and output some CommandLine.rmd to run PDFMerge if you were
going to say select 1,3,9 pdf's and merge them all.
Sincerely,
Paul
Here you go, Paul!
-- Example 01 (LoadFileNamePlusPlus with Multi-Select)
CLS
PLUGIN LoadFileNamePlusPlus.RBL 'vResult +
|MULTISELECT ON +
|TITLE Select File +
|VIEW_MODE LIST +
|FILTER MS Word Files (*.rtf, *.doc, *.pdf)#*.rtf;*.doc,*.pdf'
RETURN
Note:
. When using MULTISELECT ON, you will need to keep track or parse all
resulting variables accordingly.
For example, if you only selected one file, note the following resulting
variables:
vResult = OK TEXT
vLFNFileCount = 1 INTEGER
vLFNFileName1 = C:\RBTI\RBG76\Tutorial.pdf TEXT
vLFNFilePath1 = C:\RBTI\RBG76\ TEXT
vLFNFileNameS1 = Tutorial.pdf TEXT
vLFNFileExt1 = .pdf TEXT
vLFNFileDT1 = 02/14/2009 7:56:00 PM TEXT
vLFNFileSize1 = 8945873 INTEGER
If you have selected two files, note the following resulting variables:
vResult = OK TEXT
vLFNFileCount = 2 INTEGER
vLFNFileName1 = C:\RBTI\RBG76\ProblemSolvingInRBASE.pdf TEXT
vLFNFilePath1 = C:\RBTI\RBG76\ TEXT
vLFNFileNameS1 = ProblemSolvingInRBASE.pdf TEXT
vLFNFileExt1 = .pdf TEXT
vLFNFileDT1 = 12/29/2008 7:56:00 AM TEXT
vLFNFileSize1 = 797599 INTEGER
vLFNFileName2 = C:\RBTI\RBG76\WhatsNewInRBASE7 TEXT
6forWindows_Update6.pdf
vLFNFilePath2 = C:\RBTI\RBG76\ TEXT
vLFNFileNameS2 = WhatsNewInRBASE76forWindows_Update6.pdf TEXT
vLFNFileExt2 = .pdf TEXT
vLFNFileDT2 = 2/14/2009 7:56:00 AM TEXT
vLFNFileSize2 = 63017 INTEGER
Have fun!
Very Best R:egards,
Razzak.
--- RBASE-L
================================================
TO POST A MESSAGE TO ALL MEMBERS:
Send a plain text email to [email protected]
(Don't use any of these words as your Subject:
INTRO, SUBSCRIBE, UNSUBSCRIBE, SEARCH,
REMOVE, SUSPEND, RESUME, DIGEST, RESEND, HELP)
================================================
TO SEE MESSAGE POSTING GUIDELINES:
Send a plain text email to [email protected]
In the message SUBJECT, put just one word: INTRO
================================================
TO UNSUBSCRIBE:
Send a plain text email to [email protected]
In the message SUBJECT, put just one word: UNSUBSCRIBE
================================================
TO SEARCH ARCHIVES:
Send a plain text email to [email protected]
In the message SUBJECT, put just one word: SEARCH-n
(where n is the number of days). In the message body,
place any
text to search for.
================================================