copying files from "filelist" to destination folder

princmode

New member
Local time
Today, 10:10
Joined
Apr 10, 2019
Messages
7
hi guys
this is my first topic here and iam really want your help
the following form( inserted as an attachment) is adding files from my computer to filelist
the issue here is that i want to copy the files which added in filelist to a specific folder which i choose

sorry for my english
thank u
 

Attachments

in access, lists are controlled by a table.
the list is bound to it

so instead of using: Me.filelist.AddItem
make an append query:

insert into table (filename) values ('" & varFile & "')"
docmd.runSql

at the end, refresh the list: filelist.requery
 
in access, lists are controlled by a table.
the list is bound to it

so instead of using: Me.filelist.AddItem
make an append query:

insert into table (filename) values ('" & varFile & "')"
docmd.runSql

at the end, refresh the list: filelist.requery

many thanks for your reply
could u please edit the script for me cause i dont have enough knowledge about scripting in accesss
 

Users who are viewing this thread

Back
Top Bottom