Prev: count qry
Next: Calculating Elapsed Time
From: PANOS via AccessMonster.com on 20 May 2010 07:44 Good morning and thks for your help, 1. Have on acces Qouestion with the following CODE 02304 02305 02306 Code is the item No 2. I have folder one my pc and i want to delete that foto (name of photo = code) -- Message posted via http://www.accessmonster.com
From: Tom van Stiphout on 20 May 2010 09:47 On Thu, 20 May 2010 11:44:30 GMT, "PANOS via AccessMonster.com" <u60184(a)uwe> wrote: You would have to write some VBA code to loop over the data, and delete each file: dim rs as dao.recordset const MY_FOLDER as String = "c:\myfolder\" 'NOTE: must have trailing backslash set rs=currentdb.openrecordset("select [item No] from [Qouestion] 'TODO: Adjust these object names if not correct while not rs.eof Kill MY_FOLDER & rs(0) rs.movenext wend rs.close -Tom. Microsoft Access MVP >Good morning and thks for your help, > >1. Have on acces Qouestion with the following > >CODE >02304 >02305 >02306 >Code is the item No >2. I have folder one my pc and i want to delete that foto (name of photo = >code)
|
Pages: 1 Prev: count qry Next: Calculating Elapsed Time |