- 关 键 词:
- realplayer
- window
Realplayer的列表播放,利用一个REALPLAYER的路径来实现的,在标准EXE窗体上,放置一个REALAUDIO1,和commondialog1,加二个按钮,LIST1命名为lstItems,一个按钮命名为添加文件,一个按钮为保存列表,在添加文件中加入下如代码:
Private Sub Command1_Click()
Dim strfix As String
Dim i As Integer
Dim yy As String
CommonDialog1.ShowOpen
sTmp = CommonDialog1.FileName
If Len(sTmp) = 0 Then Exit Sub
For i = 1 To Len(sTmp)
strfix = Mid(sTmp, i, 1)
If strfix = "\" Then
strfix = "/"
End If
yy = yy & strfix
Next i
sTmp = "File://" & yy
lstItems.AddItem sTmp
end sub
Private Sub Command2_Click()
Dim s As Integer
CommonDialog1.DialogTitle = "输入要保存的RM文件"
CommonDialog1.Filter = "RealPlayer播放列表(*.RM)|*.RM"
CommonDialog1.ShowSave
If Len(CommonDialog1.FileName) = 0 Then
Exit Sub
End If
Open CommonDialog1.FileName For Output As #1
For s = 0 To Me.lstItems.ListCount - 1
Print #1, Me.lstItems.List(s)
Next s
realaudio.source=commondialog.filename
realaudio.doplay
End Sub
Private Sub Form_Load()
realaudio1.controls="imagewindow"
End Sub
如加上删除或移动文件,增加一些,修改一点,并可实现呀!转载保留:http://www.qqread.com/vb/d275778.html进入讨论组讨论。
相关图文阅读
频道图文推荐
健 康 咨 询
时 尚 咨 询
相关专题
- VB+Access设计图书管理系统 (104238次浏览)
- VB设计有语音报时和报警功能的闹钟 (13528次浏览)
- 用VB打造“超酷”个性化菜单 (667次浏览)
- VB基础学习:编码规范 (654次浏览)
- 对注册表进行编程的“捷径” (646次浏览)
- 在IIS中建立WEB站点的例子! (603次浏览)
- 用VB6.0设计简易赛车游戏 (414次浏览)
- 导入注册表设置 (308次浏览)
- 用Visual Basic.NET编写扑克牌游戏 (189次浏览)
- VB急速密码生成---RndString (188次浏览)



