Para reproducir un fichero con su programa asociado como si hicieras doble click sobre el se usa ShellExecute.
Ejp.
Código vb:
Ver originalDeclare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Sub Command1_Click()
Dim Fichero As String
Fichero = "c:\amino\y\nombre\del\ficheroajeecutar\p_ej.jpg"
ShellExecute Me.hwnd, "open", Fichero, vbNullString, vbNullString, SW_SHOWNORMAL
End Sub
Para copiar un fichero a otro sitio puedes usar filecopy.
FileCopy FicheroOrigen, FicheroDestino
Saludos