shgfkjsdhfkjshdkfjsdkjfhksdjfhkjsdhfksdjf
Wednesday, 22 February 2012
To disable the blinking cursor in Desktop using registry
It shows how to disable the blinking cursor in Desktop using registry
Keywords: registry, regedit, desktop, cursor.
Steps to disable the blinking cursor in Desktop
Wednesday, 14 December 2011
Our Sites.....VISIT
it contains tips codes and sample program for .NET DEVELOPMENT.
www.coolmybaby.blogspot.com
www.coolmybaby.blogspot.com
it contains complete tutorial for your child care.............VISIT IT INTERESTING........
it contains details of our MYSTERIOUS WORLD.............VISIT IT INTERESTING........
www.tips4compu.blogspot.com/
it contains tips and tricks to tweak our PC and network.............VISIT IT INTERESTING........
it contains details of our MYSTERIOUS WORLD.............VISIT IT INTERESTING........
www.tips4compu.blogspot.com/
it contains tips and tricks to tweak our PC and network.............VISIT IT INTERESTING........
Thursday, 1 December 2011
World of Development: Architecture of .net framework
World of Development: Architecture of .net framework: architecture of .net framework .NET Framework Architecture. Figure shows .NET Framework Architecture Diagram
World of Development: Mediaplayer in VB.NET, VB.NET Mediaplayer, Mediapl...
World of Development: Mediaplayer in VB.NET, VB.NET Mediaplayer, Mediapl...: Mediaplayer Programming in VB.NET Simple to program a mediaplayer in VB.NET. We can play Music, Videos all in this MediaPlayer. Below Steps...
Mediaplayer in VB.NET, VB.NET Mediaplayer, Mediaplayer Programming in VB.NET
Mediaplayer Programming in VB.NET
Simple to program a mediaplayer in VB.NET. We can play Music, Videos all in this MediaPlayer. Below Steps shows the way to program a VB.NET MediaPlayer.
4. Then write the code given below.....
If you any suggestions against this topic just mail me....................
Simple to program a mediaplayer in VB.NET. We can play Music, Videos all in this MediaPlayer. Below Steps shows the way to program a VB.NET MediaPlayer.
- Add a media player control from tool box in Visual Studio.
Right click on toolbox in visual studio and select 'Choose Item' in menu.
2. From Choose ToolBox Item Frame select COM Components Tab and select windows media player from the list given below in that frame. check the windows media player components and click OK.
3. Drag the Windows Media Player Control to the frame or form. and dock into FILL in the Dock property of Windows Media Player Control.
4. Then write the code given below.....
Imports System.Windows.Forms Namespace mymediaplayer Public Partial Class Form1 Inherits Form Public Sub New() InitializeComponent() End Sub
//Create a button name Browse.....
//add a open file dialog from toolbox into the frame....
Private Sub btnBrowse_Click(sender As Object, e As EventArgs)
openFileDialog1.Filter = "mp3,wav,mp4,mov,wmv,mpg|*.mp3;*.wav;
*.mp4;*.mov;*.wmv;*.mpg|all files|*.*"
If openFileDialog1.ShowDialog() = DialogResult.OK Then
axWindowsMediaPlayer1.URL = openFileDialog1.FileName
End If
End Sub
End Class
End NamespaceIf you any suggestions against this topic just mail me....................
Subscribe to:
Comments (Atom)