I've read those help topics that you linked to Psycho...
These bits seem to be what I'm looking for -
CODE
Public Property CreationTime As DateTime
CODE
Dim instance As FileSystemInfo
Dim value As DateTime
value = instance.CreationTime
instance.CreationTime = value
I have no idea how to implement that into my code though.
At the moment I have several buttons that each open up a different folder on my network drive (the customer folder - see above post). The code I have attached to each button is this -
CODE
Private Sub TenetButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TenetButton.Click
Process.Start("\\IFADATAFLOW1\SharedDocs\Tenet Live Work")
So that code opens the main folder i want, but what I want it to do is to access the most recently created subfolder within it and then open up the most recently created subfolder within that as a final result, so i will arrive at the folder created on todays date, or at least the most recent date. I've explained that need in a bit more detail above.
Could you give me a hand with this?