How to Play an .AVI Video File in Full Screen in Visual BasicID: Q142389
|
The example uses the mciSendString application programming interface (API)
from Microsoft Windows version 3.1 or Microsoft Windows version 3.0 with
Multimedia Extensions.
For the example to work, your computer must be able to play .AVI files and
you need either Microsoft Windows version 3.1 or Microsoft Windows version
3.0 with Multimedia Extensions.
The .AVI file included in the example (WNDSURF1.AVI) is the one from
Microsoft Video for Windows.
Information in the Visual Basic 4.0 section applies only to Visual Basic
4.0, and information in the Visual Basic 3.0 section applies only to Visual
Basic 3.0.
#If Win32 Then
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
#Else
Private Declare Function mciSendString Lib "mmsystem" (ByVal _
lpstrCommand As String, ByVal lpstrReturnStr As Any, ByVal _
wReturnLen As Integer, ByVal hCallBack As Integer) As Long
#End If
Sub Command1_Click ()
CmdStr$ = "play c:\winvideo\wndsurf1.avi fullscreen "
ReturnVal& = mciSendString(CmdStr$, 0&, 0, 0&)
End Sub
' Enter the following Declare statement on one, single line:
Declare Function mciSendString Lib "mmsystem" (ByVal lpstrCommand$,
ByVal lpstrReturnStr As Any, ByVal wReturnLen%, ByVal hCallBack%) As
Long
Sub Command1_Click ()
CmdStr$ = "play c:\winvideo\wndsurf1.avi fullscreen "
ReturnVal& = mciSendString(CmdStr$, 0&, 0, 0&)
End Sub
Additional query words: 1.00 2.00 3.00 4.00 vb4win vb4all
Keywords : kbcode
Version : 1.0 2.0 3.0 4.00
Platform : WINDOWS
Issue type :
Last Reviewed: June 23, 1999