The new BSplayer 2.35.986 doesn't load correctly video files using the execute command.
BSplayer 2.34.980 and past versions of the program had support for playing a video using this command.
I use the following code in Delphi:
run.FileName:= PlayerPath;
run.Parameters := '"' + MovieOrIni + '" ' + BSparam;
run.Execute;
*PlayerPath: The path which is located the BSplayer.exe file
*MovieOrIni: The full path of the video or ini file
*BSparam could be: '-fs' or '-pan' etc
This code works fine with all versions of BSplayer except for the latest 2.35 which plays only the last "history" file. What went wrong?
PS: My program used to call the "ShellExecute" function but
BSplayer had stopped supporting that function..