Hi,
Im trying to open jpegs and mpegs in their default programs using a simple form. the closest i got to makeing it work is this:
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
Dim psi As New ProcessStartInfo()
psi.FileName = "C:\Documents and Settings\acorn\Desktop\
vb\movie.wma"
psi.UseShellExecute = True
Process.Start(psi)
End Sub
but it throws back an error stating it cannot find the file specified (yes iv double checked the path!)
Would be greatful for any idea's
Adam