The problem is I now want the action to copy said file to a temp folder I've created.
Base on 3 hours of searching, heres what I wrote:
Private Sub Button8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button8.Click OpenFileDialog1.ShowDialog() Dim Source_dol_gcm As String Source_dol_gcm = OpenFileDialog1.FileName Dim Dest_dol_gcm As String Dest_dol_gcm = "\Dols" & Source_dol_gcm FileSystem.FileCopy(Source_dol_gcm, Dest_dol_gcm) End Sub
Everytime I run in debug, I get an error telling me The given path's format is not supported.
The folder \Dols is under the "bin\debug\" folder so I know it should be able to place it there.
Any suggestions?

New Topic/Question
Reply




MultiQuote





|