Skip to main content

Posts

Showing posts from March, 2014

How To Embed Windows Media Player In Windows Form Using VB.Net

How To Embed Windows Media Player In Windows Form Using VB.Net 1. Go to "Tool Box" pane  then right click 2. Select "Choose Items..." 3. Click "COM Components" tab 4. Select/Check the "Windows Media Player" component 5. Click OK 6. Drag the component "Windows Media Player" from Tool Box pane to Form1 7. In the "Form1_Load" event add this code: AxWindowsMediaPlayer1.URL = "C:\Users\Public\Videos\Sample Videos\Wildlife.wmv" 8. Press F5

Manila Zoo

The Manila Zoo, formally known as the Manila Zoological and Botanical Garden, is a 5.5-hectare zoo located in Malate, Manila, Philippines that opened on July 25, 1959. The photos below was taken last January 2014

How To Get The Movie Duration Using VB.Net

Function Get Movie Duration(ByVal MovieFullPath As String) As String      If File.Exists(MovieFullPath) Then         Dim objShell As Object = CreateObject("Shell.Application")         Dim objFolder As Object = _            objShell.Namespace(Path.GetDirectoryName(MovieFullPath))         For Each strFileName In objFolder.Items             If strFileName.Name = Path.GetFileName(MovieFullPath) Then                 Return objFolder.GetDetailsOf(strFileName, 27).ToString                 Exit For              ...