Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Streaming Video 1

Status
Not open for further replies.

falconman13

Instructor
Oct 10, 2000
2
US
I have posted this in the Multimedia section but will also post here in hopes someone can help.
Am producing a Training CD. Need to stream the Video content from CD rom. Cant find a way to make Media Player look to CD rom device unless I make an absolute declaration uch as D:\filename.avi. This works great until the CD rom is E: Anyone know how to make MediaBuilder to search for any CD rom drive regardless of letter. Tried File://filename.avi. No good

Thanks in advance [sig][/sig]
 
There are 3 commands in VBScript
File Object
Drive Object
Folder Object

They may help you????

here is a snippet of code from VBScripting editor in Front page 2000

Function ShowFileAccessInfo(filespec)
Dim fso, d, f, s
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.GetFile(filespec)
s = UCase(f.Path) & &quot;<BR>&quot;
s = s & &quot;Created: &quot; & f.DateCreated & &quot;<BR>&quot;
s = s & &quot;Last Accessed: &quot; & f.DateLastAccessed & &quot;<BR>&quot;
s = s & &quot;Last Modified: &quot; & f.DateLastModified
ShowFileAccessInfo = s
End Function

[sig]<p>DougP, MCP<br><a href=mailto: dposton@universal1.com> dposton@universal1.com</a><br><a href= > </a><br> Ask me how Bar-codes can help you be more productive.[/sig]
 
Thanks Doug. Good Info. About the barcode info, Will send you a private post as that I do not believe its info for the public forum.
Mike G [sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top