Hi together,
maybe someone has a suggestion for me.
I would like to upload in one step more than
one attachment in a web form.
I have read some forum entries about this
subject but the most entries have a solution
where I can select always one attachment, add
it to a list and do this again and again.
That’s not the best way :-(.
It is existing the tool DLI.Uploader with them
you can upload multiple attachments in one
step but for this tool you must pay.
Another thing … iNotes (New Memo) suppports to select and
upload multiple attachments but I didn’t found
in database design the correct form with code.
It would be great if someone can give me some
tips.
Thanks in advance,
Daniel
Subject: Upload multiple attachment in Web form in one step
What are you trying to do?
You can always add multiple file upload controls to the form, each allowing one file to be uploaded.
cheers,
Bram
Subject: RE: Upload multiple attachment in Web form in one step
Hi Bram,
thanks for your answer but …
I can add more than one upload controls but
I cannot select more than one files in one step
and start an upload with all selected files.
That’s my problem :o(
Everytime I must select one file, start submit
and then I do the same procedure for next file
again.
e.g. for ftp … you can select multiple files
and copy it to another path in one step.
Every suggestion how I can resolve this problem
would be great.
Thanks,
Daniel
Subject: Upload multiple attachment in Web form in one step
I use this code in a computed text field together with one upload control.
HTH
Code for computed text:
@If( @AttachmentNames = “”; “”;
“<OL TYPE="l">” +
@Implode( @Explode( “
A HREF='/” + @Subset(@DbName; -1) +
“/AllMachineType/” + @Text( @DocumentUniqueID ) + “/$File/” + @AttachmentNames +
“?OpenElement’ TARGET= '” + @AttachmentNames + “'> ” + @AttachmentNames +
“” + “  (” + @Text( @Round( @AttachmentLengths / 1000 ) ) +
“k) ]”; “,” ); “
” ) +
“” )
Subject: RE: Upload multiple attachment in Web form in one step
Thanks for that. You need to add in a though, and lose that final “]”.
Subject: RE: Upload multiple attachment in Web form in one step
How can we use this formula. Pls clarify the same coz we are also facing the same issue.