Pages

Data Entry Services: Offshore Online Data Entry Services in India.
"Data Entry Services delivers cost effective services like Online Data Entry, Offline Data Entry, Insurance Claim Entry Services in India."

About Me

I am a software Developer....If you need any assistance please mail me...mail id : sivodayablogs@gmail.com

Followers

Search This Blog

World of Development

Wednesday, 14 December 2011

Our Sites.....VISIT

it contains tips codes and sample program for .NET DEVELOPMENT.
 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........




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.

  1. 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 Namespace

     If you any suggestions against this topic just mail me....................



Architecture of .net framework

architecture of .net framework .NET Framework Architecture.

  •  Figure shows .NET Framework Architecture Diagram


Introducing .NET FrameWork, What is DOTNET Framework? What is .NET Framework?

  • .NET Framework is an essential component of the Windows operating system that helps create applications by integrating different programming languages, such as C#, Visual Basic, J# and Visual C++
  • .NET Framework consists of a virtual execution system called Common Language runtime (CLR) and a set of class libraries.
  • Microsoft introduced .NET to bridge the gap between applications created in different languages and ensure interoperability between them.
Version Version Number Release Date Visual Studio Default in Windows
1.0 1.0.3705.0 2002-02-13 Visual Studio .NET Windows XP Tablet and Media Center Editions
1.1 1.1.4322.573 2003-04-24 Visual Studio .NET 2003 Windows Server 2003
2.0 2.0.50727.42 2005-11-07 Visual Studio 2005 Windows Server 2003 R2
3.0 3.0.4506.30 2006-11-06
Windows Vista, Windows Server 2008
3.5 3.5.21022.8 2007-11-19 Visual Studio 2008 Windows 7, Windows Server 2008 R2
4.0 4.0.30319.1 2010-04-12 Visual Studio 2010
4.5 4.5.40805 2011-09-13 (Developer Preview) Visual Studio '11' Windows 8, Windows Server 8

    What is Dot Net?

    What is dotNet? DotNet Means? DotNet Used For? What is .Net?

    •  Dot Net/.Net is a platform through which programmers can develop programs that cause users to interact with one another’s systems rather than the program itself. DOTNET/.NET programs act as direct lines to other users that control only the way users interact rather than the interaction itself. 
    • .NET/DotNet comes complete with a library of coded solutions to common issues that arise and a virtual machine to execute programs created using the framework.
    • Examples : Windows Live Messenger is a .NET/Dotnet program that allows users to open the application and connect directly to other users.
    • The runtime environment used through the framework is CLR, or Common Language Runtime, which gives programmers the capacity to manage memory usage and exceptions.


    My Sites