oh. ok.
Thanks.
Search found 3 matches
- Wed Jul 02, 2008 1:25 pm
- Forum: Beginners
- Topic: opening new files in a folder
- Replies: 4
- Views: 5267
- Wed Jul 02, 2008 12:10 pm
- Forum: Beginners
- Topic: opening new files in a folder
- Replies: 4
- Views: 5267
So I've set this up as follows: VBSTART Function NewestFile(\\sheila2\c\bsi32\logs) Set oFSO = CreateObject("Scripting.FileSystemObject") Set oFolder = oFSO.GetFolder(\\sheila2\c\bsi32\logs) dPrevDate = "0" For Each oFile In oFolder.Files If DateDiff("s", dPrevDate, oFile.DateLastModified) > 0 Then ...
- Fri Jun 20, 2008 1:37 pm
- Forum: Beginners
- Topic: opening new files in a folder
- Replies: 4
- Views: 5267
opening new files in a folder
Hi, Really new to scripting and jumping in head first. I'm sure I'll be nearly swimming after this though. I'm trying to create a macro that will detect when a file is created in a folder open it in MS access making some version conversions along the way and then export to a text file. At first I th...