vb.net - list view files in .NET -
How can the files opened in VB.NET be listed?
Open files should be in the list view on the left side of the GUI.
You can track open files manually, for example, by placing a collection in which Their names are included once a new file is opened, a new item containing the file path is added to the archive. When a specific file is closed, that item is removed from the collection.
Note: The collection I'm talking about can be different data for specific files, not just the file path.
You have been given that archive, you can easily tie it in a list view control.
Comments
Post a Comment