Personalized lock screen

Microsoft Windows 8 Personalized lock screen. from windows.microsoft.com

Microsoft DreamSpark Offers Free Download Visual Studio 2008, Server 2003, SQL Server 2005

What is DreamSpark.Microsoft DreamSpark is a world wide program that provides no-cost access to Microsoft designer and development tools for students, In order to support and advance their learning and skills through technical design, technology, maths, science and engineering activities.Every free Microsoft developer tools download will be verified through an Online Student Status Verification process which linked to schools and organizations around...

Add a row / Multiple rows to the data table c#.net

I suppose to use a data table as data source in my grid View controller. Can you please explain how I need to do it? 1. The first step is to create an empty Data Table. DataTable dt = new DataTable(); 2. Second step is to create a new DataRow object. DataRow newRow = dt.NewRow(); 3. Now you have created and initialized a DataRow. So then it is needed to add values to rows. newRow["id"] = 1; // we have created column call “id” and add it to value 1 newRow["username"] = "adam" ; // we have created column call “username” and...

SQL Server 2005 — Enhancements

What are the enhancements for Data Base Administrators in SQL Server 2005 ? SQL Server 2005 has provide single management console that enables data base Administrators monitor, manage and tune all databases and services. SQL Management Object (SMO) is an efficient management infrastructure to easily program. SMO provides all the management functionalities of the SQL Server and is implemented as a Microsoft .NET Framework assembly. The primary purpose of the SMO is to automate administrative tasks such as retrieving configuration settings, creating...

How to use savefiledialog box in the c#.net ?

// Create a new SaveFileDialog object SaveFileDialog obDialogSave = new SaveFileDialog(); // Set Default file extension to dialog obDialogSave.DefaultExt = "txt"; // Other Available file extensions to dialog obDialogSave.Filter = "Text file (*.txt)|*.txt|XML file (*.xml)|*.xml|All files (*.*)|*.*"; // Adds a extension if the user does not select obDialogSave.AddExtension = true; // Restores the selected directory, next time obDialogSave.RestoreDirectory = true; // To display Dialog title obDialogSave.Title = "Where do you want to save the...

What is .Resx file in Dot Net?

What is .Resx file in Dot Net? How to access? Resource files are used in .NET to store culture-specific data all in one place, separate from the code. For example, suppose you are developing a multi-language Web site and you have a form on a page with a label beside a text field and the label in English says "First Name." Instead of having code like this: if (language == "English") { lblFirstName = "First Name"; } else if (language == "German") { lblFirstName = "Vorname"; } You can just do this: ResourceManager resourceManager = new ResourceManager("nameSpace.resourceFileBaseName", Assembly.GetExecutingAssembly()); lblFirstName...