TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About VS 2010
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Vijay Prativadi (11)
Jean Paul (9)
Suthish Nair (6)
Karthikeyan Anbarasan (5)
Shirsendu Nandi (4)
Vulpes (3)
Mahadesh Mahalingappa (3)
Krishna Garad (3)
Dorababu Meka (3)
Nipun Tomar (2)
Vamshi Krishna (2)
Vijai Anand Ramalingam (2)
Muralidharan Deenathayalan (2)
Abhimanyu K Vatsa (2)
Hirendra Sisodiya (2)
Jaganathan Bantheswaran (2)
Destin Joy (2)
Keyur Patel (1)
A V Mahesh (1)
Vilas Gite (1)
Dom Millar (1)
Suchit Khanna (1)
Hemant Solanki (1)
Scott Lysle (1)
Vishal Nayan (1)
Iftikar Hussain (1)
Hussain Munaf (1)
Matthew Cochran (1)
Jawed Mohammed (1)
Priti Kumari (1)
Soft Corner (1)
Ghanashyam Nayak (1)
Mahak Gupta (1)
Pradeep Chandraker (1)
Rajeev Kumar (1)
Sandeep Singh Shekhawat (1)
Prasham Sabadra (1)
Christian Nwamba (1)
Sonam Sharma (1)
Jay Parekh (1)
Sachin Pachori (1)
Amit Choudhary (1)
Venkatesh Kumar (1)
Sanket Terdal (1)
Shivam Pandya (1)
Fijo Francis (1)
Shivprasad (1)
Yogesh Jaiswal (1)
Honey Chawla (1)
Gohil Jayendrasinh (1)
Ravish Sindhwani (1)
Ravishankar Singh (1)
Bryian Tan (1)
Sapna (1)
Related resources for VS 2010
No resource found
How to Create Add-Ins Using VSTO in MS-Word
2/29/2024 7:15:07 AM.
VSTO application add-ins allows developers to extend Office applications. Visual Studio Tools for Office (VSTO) is a set of development tools available in the form of a Visual Studio add-in (project t
Calling Unmanaged Functions Which Take A Variable Number Of Arguments From C#
10/23/2023 5:12:44 AM.
Many C# programmers are familiar with the Platform Invoke mechanism (using the DllImport attribute) for calling unmanaged functions from C#.
Making Your Code CLS Compliant
10/5/2023 8:38:35 AM.
If you are writing .Net classes, which will be used by other .Net classes irrespective of the language they are implemented, then your code should conform to the CLS [Common Language Specification].
Use Of Serialization In C#
9/24/2023 8:23:14 PM.
In this article I will demonstrate the use of serialization and how to perform XML serialization.
Total in TextBox of two TextBoxes in C#
9/18/2023 10:56:06 AM.
How to use Total in TextBox in two TextBoxes in C#.
Converting Numbers To Words Using The Indian Numbering System
9/18/2023 8:21:46 AM.
In this article, I'd like to present a similar program using the Indian numbering system. This system differs from the US/UK systems in that it doesn't use 'millions' but instead uses
Creating A Console ListBox In C#
9/14/2023 9:14:06 AM.
C# developers who are interested in console programming are often frustrated by the lack of user interface features which the console has compared to Windows Forms and WPF applications.
Creating a Basic RogueLike Game in C# (Version 0.1)
9/11/2023 11:57:03 AM.
Want to build a Roguelike game with C# in 5 minutes? The following is a really quick game I built in about 2 hours and shows how easy it is to get a simple game going.
File System Watcher in C#
8/28/2023 9:11:07 AM.
Here you will see how to use a File System Watcher in C#.
Concurrency violation: the UpdateCommand affected 0 of the expected 1 records
7/19/2023 5:31:57 AM.
This article will help you to resolve the error UpdateCommand affected 0 of the expected 1 records.
Creating Image Free Gradient Buttons in C#
6/2/2023 7:23:04 AM.
This article shall describe a simple tool you can build and use to create the CSS to apply a gradient overlay to buttons, divs, or whatever you like, in an ASP.NET or just plain HTML project.
Web.Config configuration file in ASP.NET 3.5
6/1/2023 7:23:20 AM.
The web.config file contains information that controls module loading, security configuration, session configuration, and application language and compilation settings.
SQL Server Log Shipping
2/8/2023 7:15:30 AM.
To synchronize the database Sql Server the log shipping is used. It is easy to set up, maintain and troubleshoot. It is the process of backing up your database and restoring these backups to another s
Create RDLC Report in VS 2010 and SQL Server 2008
12/28/2022 11:43:23 AM.
This article explains how to create a RDLC report using VS 2010 and SQL 2008.
Save PDF and MS Word File in C#
8/22/2022 11:02:55 AM.
In this article I will tell you how to create a PDF file, Microsoft Word file and a text file from C# with a complete sample that uses these tools with C#.
C# Anonymous Methods & The Action Object
4/6/2022 11:14:21 AM.
Two interesting additions to the 2.0 C# language are the Action<> object, and anonymous methods. The Action<> object lets you specify an action to be performed on an object and the anonymo
Split and Merge files in C#
3/28/2022 10:43:02 AM.
This example shows how to split and merge files in C# .Net.
Data Driven Testing Using Selenium (webdriver) in C#
1/5/2022 10:29:48 AM.
In this article, I would like to explain about performing data driven testing in Selenium using .Net.
User Control in C#
5/27/2021 9:15:26 AM.
Here I have to show the complete demo of how to create user control in C# window application.
Major Events in GLOBAL.ASAX file
1/13/2021 7:29:52 AM.
The Global.asax file, which is derived from the HttpApplication class, maintains a pool of HttpApplication objects, and assigns them to applications as needed.
Print the Controls of the Window Form
5/18/2020 1:37:12 AM.
This article will show you how you can print all the controls of a Window Form.
DropDownExtender With JavaScript
4/3/2020 4:42:51 AM.
Here you will see a simple example of a DropDownExtender With JavaScript.
Generic Data Access Layer for WCF : Part 5
9/26/2019 12:36:28 AM.
In this article, we will solve the runtime serialization issues we encountered in the previous article.
WCF Address Types and Formats
9/17/2019 1:19:24 AM.
This article will help to understand the basics of WCF Addresses.
WCF Programming Methods
9/17/2019 1:04:02 AM.
WCF supports a number of different methods of programming. This article discusses the three common methods of developing WCF services.
WCF Architecture
9/17/2019 12:46:09 AM.
This article helps to explain the architecture of WCF and the components that make WCF what it is.
Consume a Custom WCF Service in a Console Application
9/16/2019 3:19:45 AM.
In this article, you will see how to consume the custom WCF service in a Console Application.
SQL Server Database Mirroring: Part 2
7/18/2019 12:05:59 AM.
You can read SQL Server Database Mirroring. Database Mirroring is used to move the database transactions from one SQL Server database (Principal database) to another SQL Server database (Mirror databa
Bulk Insert task in SSIS
7/15/2019 10:17:19 AM.
In this article, we are going to see how to use Bulk Insert task in SSIS.
Script Component in SSIS
7/5/2019 2:31:55 AM.
Script Component is a component available in DataFlowTask. Using a script component you can execute custom code as part of the DataFlowTask. How to use the Script Component in SSIS.
Passing Table Valued Parameter to Stored Procedure: Part 2
6/11/2019 2:18:04 AM.
Here you will see how to pass a table valued parameter to a Stored Procedure.
How to insert new and update existing records using SSIS
6/6/2019 1:26:38 AM.
In this article, we will see how to insert new and update existing records using SSIS.
Select Single Radio Button in Gridview in Asp.Net
5/16/2019 5:03:27 AM.
In this article we will learn how to select only one row of a Gridview using RadioButtons whereas normally a RadioButton does not support selection of only one RadioButton within a row.
Get a Conversion Rate From One Currency to Another Currency
7/10/2015 5:43:46 AM.
Here we are developing a web application that is used for getting a conversion rate for converting from one currency to another currency. For developing this application we need a web service to find the current conversion rate of currencies.
Custom User Login and Registration Page in ASP.Net MVC3 with Razor and Entity Framework
6/2/2014 11:11:37 PM.
In this article I will demonstrate a sample project showing how to create a Login and Registration Page using ASP.Net MVC3 Razor and Entity Framework.
Content Types in SharePoint 2010
12/2/2013 5:19:33 AM.
But before going into more details, let's first discuss briefly what the content types are.
Creating Directory or Folder using ASP.NET in C#
10/30/2013 4:35:46 AM.
In this article you will learn how to create Directory or Folder using ASP.NET in C#.
Various Ways to Pass Data Among Web Forms
9/12/2013 5:48:59 PM.
This article shows various ways to pass data among Web Forms.
Using Reporting Services 2012 With SQL Server 2010
9/5/2013 3:31:39 PM.
Here in this article you will learn how to work with Reporting Services 2012 with SQL Server 2010 and Visual Studio 2010.
Report Viewer Control in VS 2010
8/5/2013 6:03:59 PM.
Hi Viewers, I am explaining step-by-step how to go to with the Report Viewer Control and the procedure to avoid some frequent errors that happen for report sections.
Getting Started With MEF to Load WPF User Controls From .Dll in VS 2012
5/22/2013 8:51:27 AM.
This article will show how to make a DLL that contains WPF User Controls and then we can load that .dll using MEF (lazy loading) then how to add that User Controls to other applications from the dll.
Create Your First MVC Project
5/6/2013 12:17:39 PM.
Let's start creating your first MVC Project.
SharePoint 2010 - SharePoint Object Model
5/3/2013 1:49:56 AM.
Here we are only discussing the Server Object Model. Server Object Model classes are used for server-side programming and will be executed on the SharePoint Server Farm.
SharePoint 2010 - List - Add, Edit, Delete Using Code
5/2/2013 2:07:21 PM.
In this article we can experiment with list manipulations through code.
SMS Messaging Framework Using TWILIO API
2/14/2013 4:28:11 PM.
The article is about creating the SMS messaging framework to allow users to send a SMS message to their application subscribers using the Twilio REST API.
Foreach Behavior With Anonymous Methods and Captured Value
1/30/2013 5:18:52 PM.
Recently I’ve been researching about the behavior of foreach loop for C# in 5.0 and earlier versions. Here’s a snippet that I was trying and getting different output in different versions of C#.
Sequential Work Flow in SP 2010 Using VS 2010
11/20/2012 1:23:18 PM.
In this article we will see how to create a sequential work flow in SharePoint 2010 using VS 2010.
Image Editing Tool in VB.Net (Part5- Rotations of Image)
11/9/2012 11:49:40 AM.
This article describes how to rotate an image, This is the next article of the "Image Editing Tool in VB.Net" article series.
Generic Dal in WCF using VB.NET
11/9/2012 8:29:37 AM.
In this article I would just give a tip on how to improve on the Generic DAL which we just finished in this Series .
How to Use a Dictionary Value in a Mongo Database Using C#.NET
10/22/2012 9:57:17 AM.
In this article I will describe How to use C# Dictionary value to fed in to the Mongo Database.
What's New in ASP.Net MVC 3 Controllers: Part 1
10/20/2012 6:11:48 AM.
In this article, we are going explore the new controller features provided in ASP.Net MVC 3.
Send SMS Using C# Web Application
10/19/2012 3:54:55 PM.
Here you can send SMS using the way2sms client library from your very own C# .Net Web Application.
Site Workflow With While, IfElse, Code Activities
10/18/2012 11:19:43 PM.
In this article we can explore using multiple activities in a Site Workflow created using Visual Studio 2010.
ToLookup Extension Method explained
10/13/2012 5:26:58 AM.
The ToLookup() method can be used to quickly create lookup items based on different conditions.
PIN Extension Method Using C#
10/13/2012 5:07:05 AM.
An extension method is a special kind of static method that allows you to add new methods to existing types without creating derived types. PIN stands for the three extension methods PreviousItem, IndexOfCurrentItem and NextItem.
Using Auto Intelligence Using C# Code Snippet for Faster Coding in C#.Net
10/13/2012 4:55:30 AM.
It is a developer's tendency to achieve functionality and forget the basic structure required in the project. Later we need to add region, try blocks and copyright information to make it professional. I myself have done many of these reworks, so my current project inspired me to think of different directions to implement an Auto Intelligence to avoid such situations.
B- Ball, C- Cat, D - dog: - Learning (REGEX) regular expression the easy way
10/4/2012 9:17:43 AM.
Regex has been the most popular and easiest way of writing validations. The only big problem with regex has been the cryptic syntax. Developers who are working on projects with complicated validation always refer to some kind of cheat sheet to remember the syntaxes and commands.
How to make image editor tool in c#: Rotations of image
10/4/2012 8:46:38 AM.
In this article we will discuss how to rotate, flip and save an image.
Registration + Login + Email-id verification Scenario in C#
10/3/2012 11:48:02 AM.
In this article you will learn how to develop Registration, Login and Account Activation (sending Email ID verification) using C#.
Microsoft Message Queue(MSMQ)
9/29/2012 4:56:40 AM.
This article describes how to access message s from message queues, and how to peek and receive messages from message queues.
CollapseAblePanel Control in Ajax
9/14/2012 8:47:05 PM.
Today I am going to explain you how to use a CollapseAblePanel control in AJAX.
SPMetal LINQ - To SharePoint Delete 2010 Programmatically Using VS 2010
8/1/2012 11:27:30 AM.
Today, in this article let’s play around with one of the interesting and most useful concepts in SharePoint 2010.
How to Edit / Write in Excel File Sheet (Second Sheet)
7/19/2012 3:32:00 PM.
Here you will see how to Edit / Write in Excel file Sheet (Second Sheet).
Manage Search Scope in Sharepoint 2010
6/28/2012 1:48:42 PM.
In this article we can experiment with managing search scope.
List Creation in SharePoint 2010 Programmatically Using VS 2010
6/26/2012 12:45:07 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in SharePoint 2010.
Steps Towards Windows Communication Foundation: Part 2
6/19/2012 1:43:02 AM.
In this article we will see some basic of Windows Communication Foundation .
Automated Clearing House (ACH) Tool Using Windows Forms
6/19/2012 12:42:33 AM.
This is an article regarding the development of an Automated Clearing House (ACH) tool using Windows Forms.
How To Add An Image to a LightSwitch Screen
6/19/2012 12:40:50 AM.
In this we shall discuss how to add an image to the LightSwitch screen.
Programmatically Enable Versioning to a Sharepoint List
6/7/2012 10:37:16 PM.
We often have a requirement to create a list using the SharePoint object model and at the same time we have to enable the versioning settings.
SharePoint 2010 - Web Parts Programming
5/24/2012 8:00:27 PM.
In this article we can explore Web Parts one of the important extensible tool inside SharePoint. Using Visual Studio we can create Web Parts.
Import Spreadsheet in SharePoint 2010
5/23/2012 5:32:15 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in SharePoint 2010.
Links in SharePoint 2010
5/23/2012 5:12:34 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in SharePoint 2010.
Asset Library in SharePoint 2010
5/23/2012 5:41:41 AM.
Today, in this article let’s play around with one of the interesting and most useful concepts in SharePoint 2010.
Tasks in SharePoint 2010
5/22/2012 5:42:25 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in SharePoint 2010.
Project Tasks in SharePoint 2010
5/22/2012 5:30:18 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in SharePoint 2010.
SharePoint 2010 - Create Document Library
5/22/2012 1:24:57 PM.
In this article we can explore the creation of Document Library through code. Here we are using existing Document Templates inside SharePoint to create a new document library.
Announcement in SharePoint 2010
5/21/2012 1:35:21 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in SharePoint 2010.
Slide Library in SharePoint 2010
5/21/2012 12:41:37 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in SharePoint 2010.
Document Workspace in SharePoint 2010
5/21/2012 12:26:40 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in SharePoint 2010.
How to Restore a Database in SQL Server 2008
5/20/2012 1:13:00 AM.
You will learn how to restore a database in SQL Server 2008
SQL Server Reporting Services (SSRS): Part 2- Deploying a Report
5/20/2012 1:02:16 AM.
This is part 2 of a series of articles on SSRS where we shall see how to deploy a Report.
SQL Server Reporting Services (SSRS): Part 1- Basics of creating a report
5/20/2012 1:00:51 AM.
Here you will see SQL Server Reporting Services (SSRS) - The basics of creating a report.
How to Show Data Saved as a Long-Blob in MySql
5/19/2012 7:03:03 AM.
In this article I would like to show how we can load data that was stored as a long-blob in the database.
How to Use the Union All component
5/19/2012 6:49:48 AM.
The Union All component is used to combine more than one inputs to a single output.
Experiencing SQL Server 2008 Database Projects in Visual Studio 2010
5/19/2012 6:24:08 AM.
This article explains or gives a small introduction to the new project template available under .NET Framework 4. Here, I am trying my best to explain the template because I am also exploring and learning this new template.
Generating a View in SQL Server 2008
5/19/2012 6:19:36 AM.
In this article I will describe what a view is, how it is usefull and how you will generate a view between more than one table.
Windows Azure - Manage Service Configurations of Azure Application in Visual Studio 2010
5/19/2012 4:50:10 AM.
In this article we are going to see how to use the new feature of Managing Multiple Service Configuration files using the Visual Studio 2010 tools provided for a Windows Azure Application.
Introduction of Mobile entree in MOSS2010
5/19/2012 4:28:56 AM.
Agenda of this article Overview of mobile entree. Features of mobile entree and Limitations mobile entree.
Windows Azure - Create an Azure Service Package Using Windows Azure Tools V1.4 For VS 2010
5/15/2012 7:07:39 PM.
In this article we are going to see how to create an Azure Application package using the Visual Studio 2010 Azure tool from the latest (August 2011) release.
Step Towards Windows Communication Foundation: Part 3
5/15/2012 6:55:58 PM.
In this article we will see how to develop our first WCF service without using a Visual Studio template. Follow the steps given.
Custom Validation to Validate Dates with Client-Script
5/15/2012 5:20:28 PM.
In this article I am going to explain how we can validate two dates using custom-validator. This article also covers how to use a JQuery calendar in master pages.
WCF Series - Creating Your First WCF Service
5/13/2012 6:49:53 AM.
In this article we are going to learn how to go about creating a WCF Service.
Custom List Creation in SharePoint 2010
5/8/2012 12:48:54 AM.
Today, in this article let’s play around with one of the interesting and most useful concepts in SharePoint 2010.
SharePoint 2010 Missing Generate File Plan Report Link
5/7/2012 12:32:55 PM.
SharePoint 2010 is missing a Generate File Plan Report Link from the library setting.
How to Create an Enterprise Search Center in SharePoint 2010
5/2/2012 7:50:09 PM.
In this article we are seeing how to configure Enterprise Search Center in SharePoint 2010
How to Configure Best Bet in SharePoint 2010 Search
5/2/2012 2:10:12 PM.
In this article, I am showing you how to configure Best Bet in Search.
A Simple Pagination Using jQuery
4/24/2012 1:30:26 PM.
This plugin creates a simple navigational element.
SharePoint 2010 - Starting Programming
4/23/2012 11:36:00 AM.
In this article we can start with the programming part of SharePoint 2010.
Unable to View the Enterprise Keywords in SharePoint 2010 Lists
4/14/2012 2:36:20 PM.
How to resolve the problem of unable to view the Enterprise Keywords in SharePoint 2010 lists.
SharePoint 2010 - Enterprise Document Management
4/5/2012 3:31:17 PM.
SharePoint provides a good amount of features supporting Enterprise Document Management.
- Ebook
Source Code: Graphics Programming with GDI+
Graphics Programming with GDI+ is the .NET developer's guide to writing graphics appl...
Download