在VisualBasic6.0中实现自动播放VCD
2018-06-17 17:13:31来源:未知 阅读 ()
用“regedit.exe”查看Windows98的注册表中光盘机的属性项(hkey_local_machine,enum,scsi),比较硬盘机的属性项(hkey_local_machine,enum,esdi)和软盘机
的属性项(hkey_local_machine,enum,flop),就可发现:不同的盘体,是用“devicetype”这个参数来区别的,硬盘的devicetype是“0”,软盘是“0a”,光盘机是“5”。再用“devicetype”为关键字,查找有关win32API的编程手册,就可得到辨别不同盘体的函数“getdevicetype”了。
有了这个函数,使用以下句子,即可得到光盘机盘符:
IfGetDriveType("d:\")<>5Then
IfGetDriveType("e:\")<>5Then
IfGetDriveType("f:\")<>5Then
IfGetDriveType("g:\")<>5Then
drivecd="H"
GoTogetcdfiles
EndIf
drivecd="G"
GoTogetcdfiles
EndIf
drivecd="F"
GoTogetcdfiles
EndIf
drivecd="E"
GoTogetcdfiles
Else
drivecd="D"
EndIf
getcdfiles:
程序使用穷举法,依次判断D、E、F、G盘的devicetype是否为“5”,都不是则光盘机为H(盘符超过H的机器不多,所以穷举到此为止),得到的“drivecd”就是光盘机盘符。
因为所有VCD影片的路径都是\mpegav\,所以用VB函数"Dir()"便可得到完整的播放路径:
MMControl1.FileName=drivecd&":\Mpegav\"&Dir(drivecd&":\Mpegav\*.dat")。
以下源程序,具体实现了自动播放VCD。程序窗体中只有一个多媒体控件——MMcontrol1,程序一旦运行即从第一个文件开始自动播放,按多媒体控件上的“next”键,播放下一个文件。
'声明GetDriveType函数
PrivateDeclareFunctionGetDriveTypeLib"kernel32"Alias"GetDriveTypeA"(ByValnDriveAsString)AsLong
Dimfiles()AsString
DimdrivecdAsString
DimiAsInteger
DimjAsInteger
PrivateSubForm_Load()
'判断光盘机盘符
IfGetDriveType("d:\")<>5Then
IfGetDriveType("e:\")<>5Then
IfGetDriveType("f:\")<>5Then
IfGetDriveType("g:\")<>5Then
drivecd="H"
GoTogetcdfiles
EndIf
drivecd="G"
GoTogetcdfiles
EndIf
drivecd="F"
GoTogetcdfiles
EndIf
drivecd="E"
GoTogetcdfiles
Else
drivecd="D"
EndIf
'将所有VCD文件放入数组files()
getcdfiles:
OnErrorGoTocderr:
s=Dir(drivecd&":\Mpegav\*.dat")
i=1
Whiles<>""
ReDimPreservefiles(i)AsString
files(i)=s
i=i 1
s=Dir()
Wend
j=1
Callvcdplay
OnErrorGoTo0
ExitSub
cderr:
MsgBox"CDisnotready!"
UnloadMe
EndSub
'判断是否播放下一个文件
PrivateSubMMControl1_StatusUpdate()
IfMMControl1.Position=MMControl1.LengthThen
j=j 1
Ifj>i-1Thenj=1
Callvcdplay
EndIf
EndSub
'播放VCD文件
PrivateSubvcdplay()
MMControl1.Command="stop"
MMControl1.Command="close"
MMControl1.FileName=drivecd&":\Mpegav\"&files(j)
MMControl1.Command="open"
MMControl1.Command="play"
EndSub
以上程序在中文Windows98,VisualBasic6.0上通过。->
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 利用VisualBasic实现木马攻击 2018-06-17
- VB中实现图像特技(2) 2018-06-17
- 关于VisualBasic6.0类开发(下) 2018-06-17
- 关于VisualBasic6.0类开发(上) 2018-06-17
- VisualBasic6.0FAQ 2018-06-17
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash