sir
i need to invoke my system thro VB, after some time,ie setting alarm and also the system should be idle and it should not take power cosumption.
Also pls send, how to play Mpeg videos in VB.
Printable View
sir
i need to invoke my system thro VB, after some time,ie setting alarm and also the system should be idle and it should not take power cosumption.
Also pls send, how to play Mpeg videos in VB.
Look for mciSendString api call for playing MPEG movies.
You can play a MPG this way...
VB Code:
' Project > Components > Windows Media Player ' Add the control to your form, make it of decent size. ' Then go into code view and add : Option Explicit Private Sub Form_Load() With MediaPlayer1 .FileName = "c:\blush.mpg" .Play End With End Sub