|
-
Nov 13th, 1999, 06:06 AM
#1
Thread Starter
Junior Member
How can I use the Windows API to play an avi file and have it loop constantly?????
-
Nov 13th, 1999, 08:20 PM
#2
Addicted Member
Test it:
------------------
Private Declare Function mciSendString Lib "winmm.dll" Alias "mciSendStringA" (ByVal lpstrCommand As String, ByVal lpstrReturnString As Any, ByVal uReturnLength As Long, ByVal hwndCallback As Long) As Long
Sub Command1_Click()
CmdStr$ = "play d:\winnt\clock.avi repeat"
ReturnVal& = mciSendString(CmdStr$, 0&, 0, 0&)
End Sub
------------------
smalig
[email protected]
smalig.tripod.com
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|