2
votes
What is the best method to find the newest last modified time of a folder of files?
Use the FileSystemWatcher object.
Dim folderToWatch As New FileSystemWatcher
folderToWatch.Path = "C:\FoldertoWatch\"
AddHandler folderToWatch.Created, AddressOf folderToWatch_Created
folde …
0
votes
Advice for transitioning to object orient programming from VB 6 ‘style’
I was in your shoes a few years back. I remember reading an article that estimated you would spend anywhere from 6 months to a year just reading about object-oriented development before you would …
