Access VBA LockedProgramming Microsoft Access database with VBA.
See also the forums Access and Access ASP.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Access VBA Locked section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
I used to write code to script to manage files in the old version of access .But in access2003 it won't work even though I turn off the sandbox mode.Let's find the errors in my code.
dim fs as Object
set fs=Application.FileSearch
fs.Lookin="d:\bird"
fs.filename="*.mdb"
if fs.exe() > 0 then
msgbox "found"
else
msgbox "Not found"
end if
when i debug this code it's alway show "Not found"
Can you tell me why?Thanks.