Relative positioning Of Database and Images Used in Application

There are situations when we develop an application and it works fine when we running it on the system on which it is made but when we take our application elsewhere it doesn't function properly, usually throwing error like database not found or many times you may not get the picture used in the application. [More]

Tags: , , ,

Windows Form

Migrating records from SQL SERVER to MS ACCESS and Vice Versa

Often we come across situation where we have to design an application where we have to copy the data from one database to another for instance you have all your records in MS ACCESS and you have to design an application where you have to transfer all your table records to SQL SERVER or vice versa.

[More]

Tags: , , , ,

Windows Form

Copying image file or any file from one directory to another and to save the filename to database

In this article we will be learning how to copy image file or any file form one folder to another and to save the filename to database.

Now there are situation when we need to copy a filename to different directory or a specified directory from your user application e.g. Suppose there is an application which copies you photos and picture file to a specific directory and access those files from that directory. In situations like this your application need to save the files to the specific intended directory.
[More]

Populating Data to grid On Form Load and from Grid to textboxes

In this article I will be explaining few of different things:

How to flow data from database to grid on form load.
How to flow data from grid cells to textboxes on cell content click event and double click event of datagridview.
To search record from table and flowing it to the grid. [More]

Tags: , ,

Windows Form

Navigating through records using Data Table and Stored procedure in Windows form

In this article, I am going to explain how we can get records form database table and navigate through them back and forth from first record to last record.

[More]

Tags: , ,

Windows Form

Update and Delete on Database Table through Windows Form Using Stored Procedures

In this article we will see how we can update and delete records into database table through windows form.
[More]

Tags: , , , ,

Windows Form

Insertion on Database Table through Windows Form Using Stored Procedures

Suppose we have database table named as "blog_test_up" and we have to insert records into this through an windows application form.

First, we will require a table, here I have named my table as "blog_test_up" which has three fields-name ,age and phone.

The code is as follows: [More]

Tags: , , ,

SQL Server | Windows Form