I am working on a program that operates on different files.
After selecting the first file, the program operates on the file, but when I change the file seletion from the FileListBox, the program does not select the next file I click on. I have to completely close out the program and re-open it to select another file from the list box. I am using this code .
Private Sub Dir1_Change()
File1.Path = Dir1.Path
End Sub
Private Sub File1_Click()
End Sub
After selecting the first file, the program operates on the file, but when I change the file seletion from the FileListBox, the program does not select the next file I click on. I have to completely close out the program and re-open it to select another file from the list box. I am using this code .
Private Sub Dir1_Change()
File1.Path = Dir1.Path
End Sub
Private Sub File1_Click()
End Sub