category

home / developersection / category

Retrieving Multiple Result Sets
c# 15-Apr-2013
Retrieving Multiple Result Sets

Introduction  In this blog we will discuss how to retrieve multiple results sets using DataReader object.What is DataReader?1.    The DataReader is a

Main () and Command-Line Arguments in C# Programming.
c# 09-Apr-2013
Main () and Command-Line Arguments in C# Programming.

In this blog I am trying to explain the concept of Main() method and command line arguments using C# programming. The Main method is the entry point

Read Word Document line by line Using Asp.net C# (Windows Application)
c# 01-Apr-2013
Read Word Document line by line Using Asp.net C# (Windows Application)

Hi All, I have done word document comparison tool (windows application) using ASP.NET. I have used Microsoft word object library to read word documen

how to delete some particular items in combobox.
c# 15-Mar-2013
how to delete some particular items in combobox.

u take one treeview and one combobox and textbox and 3 buttons . one button name is add parentnode ,second button name is addchildnode and third button name is deletenode button.

textbox add the data of treeview  and combobox
c# 14-Mar-2013
textbox add the data of treeview and combobox

hello. For below link project details.. If u enter a text in the textbox at a time it should be enter in to the treeview and combobox . for the purpose of combobox is storing or saving purpose... plz help me..

Database connectivity in C#
c# 12-Mar-2013
Database connectivity in C#

In this blog, I’m going to describe how to establish connection with database in C#. There are very easy steps, using that you can get data from your database. In C# for database connectivity, C# provides app.Config file.

treeview control add with combobox with the help of textbox
c# 12-Mar-2013
treeview control add with combobox with the help of textbox

https://www.mindstick.com/Articles/427/how-to-use-tree-view-control-in-c-sharp The above link project details is perfectly ok. but i want some ch

treeview control add with combobox
c# 12-Mar-2013
treeview control add with combobox

Hai Sir, Thank You Sir, Below link Project details is very useful us. In the below link project details is perfectly correct. but in that code i want some changes like . we add the combo box to the treeview .

How to Create Log File in C#
c# 06-Mar-2013
How to Create Log File in C#

In this blog I have described how to create log file in C#. Log file can be simple text file, XML document or we can also use tables in database to create log. Here I have used .txt file.

Loading a DataTable from DataReader
c# 25-Feb-2013
Loading a DataTable from DataReader

   DataReader Class in .NET provides efficient way to retrieve data from the database. DataReader can be used when to simply display the result set. I

Parameter Class in C#
c# 24-Feb-2013
Parameter Class in C#

  When writing database queries, we may configure our SQL statements using Parameters. In this blog we will discuss how to write our SQL statement wit

Store Procedure is used to Insert and Update Data
c# 19-Feb-2013
Store Procedure is used to Insert and Update Data

Create proc [dbo].[sp_tbStudentInsertUpdate]  @iStudentID_PK int,  @sStudentName varchar(50),  @sClass varchar(50),  @sTrade varchar(50),  @s