HOWTO: Play an .AVI Video File in Full Screen in VB5

Last reviewed: August 4, 1997
Article ID: Q171981
The information in this article applies to:
  • Microsoft Visual Basic Control Creation, Learning, Professional, and Enterprise Editions for Windows, version 5.0

SUMMARY

This article demonstrates how to play an .AVI (video) file in full screen from Visual Basic for Windows. When you play an .AVI file using the full screen, the color palette focus is set to the .AVI file only. No dithering of colors occurs because there are no other windows in the background to capture the color palette.

MORE INFORMATION

This example uses the mciSendString application programming interface (API). Your computer must be able to play .AVI files for this sample to work.

Step-by-Step Example

  1. Create a new Visual Basic Standard Exe project.

  2. Add a CommandButton (Command1) to Form1, and set its Caption property to "Play Video."

  3. Add the following line of code to the General Declarations section of Form1:

          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
    
    

  4. Add the following lines of code to the Command1 Click event procedure:

          Sub Command1_Click()
            '// --- Modify FILE_TO_OPEN constant as appropriate ---
            Const FILE_TO_OPEN = "C:\winnt\clock.avi"
            Dim strCmdStr As String
            Dim lngReturnVal As Long
            strCmdStr = "play " & FILE_TO_OPEN & " fullscreen "
            lngReturnVal = mciSendString(strCmdStr, 0&, 0, 0&)
          End Sub
    
    

  5. Press the F5 key to execute the sample code.

  6. Click the Play Video button to watch the video full screen. The video will last for a few seconds and then return to the Visual Basic environment.

REFERENCES

For additional information about playing an .AVI Video File Full Screen with earlier versions of Visual Basic, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q142389
   TITLE     : How to Play an .AVI Video File in Full Screen in Visual
               Basic
Keywords          : vb5all vb5howto kbhowto
Version           : 5.0
Platform          : WINDOWS


================================================================================


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: August 4, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.