Declare Function FindExecutable Lib "shell32.dll" Alias "FindExecutableA" (Byval lpFile As String, Byval lpDirectory As String, Byval lpResult As String) As Long
dim filename$, prog$, taskid%
filename = ""
prog$ = Strleft( FindExByFileName(filename) , Chr(0) )
taskid = Shell( prog$ + " " + filename, SHELL_MAX_FOCUS)
Function FindExByFileName(Byval Datei As String) As String
Dim Pfad As String
Pfad = Space$(256)
FindExecutable Datei, vbNullString, Pfad
FindExByFileName = Trim(Pfad)
End Function
so?
Per Runtime.[i]getRuntime()[/i].exec("file://D://skript.pdf");
geht es leider nicht, habe nebenher hier auch noch probiert...
So wie ich die Exception, die geworfen wird, deute, muss man bei "exec" explizit auf eine ausführbare Datei verweisen.
java.io.IOException: Cannot run program "file://D://skript.pdf": CreateProcess error=2, Das System kann die angegebene Datei nicht finden
Habe es jetzt so gelöst:
try {
Process p =
Runtime.getRuntime()
.exec("rundll32 url.dll,FileProtocolHandler " + mLabel.Finish( ) );
p.waitFor();
} catch (Exception e ) {
/* show something others */
}
Klappt (bis jetzt) wunderbar :D
Besten Dank an alle Beteiligten !