OK, so you know how when you just normal left click once on any file, it will "highlight" it, to show you its "Selected"?
I want to do that. Except im using it on a image (I dont think that fact matters, but whatever).
So, right now, I have my code, when you click on a button, it will open "New Folder" which is located on my desktop.
Now, what I want, is it to select the lets say 3rd image named "Image2.jpg" or whatever.
Now, lets say someone was able to give me a method for this, would it be done by an array and selecting the number, or would it be the actual file name/location?
Here is my basic code for the button by the way:
I want to do that. Except im using it on a image (I dont think that fact matters, but whatever).
So, right now, I have my code, when you click on a button, it will open "New Folder" which is located on my desktop.
Now, what I want, is it to select the lets say 3rd image named "Image2.jpg" or whatever.
Now, lets say someone was able to give me a method for this, would it be done by an array and selecting the number, or would it be the actual file name/location?
Here is my basic code for the button by the way:
Code:
Private Sub LinkLabel1_LinkClicked(sender As System.Object, e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked
Process.Start(My.Computer.FileSystem.SpecialDirectories.Desktop & "\New Folder")
End Sub