S
skima
Unregistered / Unconfirmed
GUEST, unregistred user!
我用delphi7自带的mediaplayer制作了一个媒体播放器.播放MP3可以,.dat文件却不行.
以下是播放.dat文件时候的代码:
begin
with mediaplayer1do
begin
close;
display:=panel1;
mediaplayer1.filename:=extractfiledir(application.ExeName)+'/曲库/'+panel2.caption+'.dat';
panel1.caption:='';
open;
rewind;
play;
end;
其中panel1是播放窗口,panel2是文件名称(假设这些都没什么问题.)
可每次我运行.dat文件的时候就出错,如下提示:
project project.exe raised exception class EMCIDeviceError with message'无法通过给定的扩展名确定设备类型.'.Process stopped. Use Step or Run to continue.
各位富翁请指教.
以下是播放.dat文件时候的代码:
begin
with mediaplayer1do
begin
close;
display:=panel1;
mediaplayer1.filename:=extractfiledir(application.ExeName)+'/曲库/'+panel2.caption+'.dat';
panel1.caption:='';
open;
rewind;
play;
end;
其中panel1是播放窗口,panel2是文件名称(假设这些都没什么问题.)
可每次我运行.dat文件的时候就出错,如下提示:
project project.exe raised exception class EMCIDeviceError with message'无法通过给定的扩展名确定设备类型.'.Process stopped. Use Step or Run to continue.
各位富翁请指教.