I am in wonder.
I just make a slideshow form and add the context menu strip as when the user click on download image then current image get copy and paste on the desktop.
I use path and destination method in this
but they say bitmap cannot be converted into the string.
Original Code:
Dim Path as string = "Path directory" } `my.resources._1`
Dim destination as string = "Detination Directory"
If File.Exists(path) And Not File.Exists(destination) Then
File.Copy(path, destination)
Replace code (try):
Dim Path as bitmap = "Path directory" } `my.resources._1`
Dim destination as string = "Detination Directory"
If File.Exists(path) And Not File.Exists(destination) Then
File.Copy(path, destination)
Please help me as fast as possible