sql server 2005

How to Update data Using C# and SQL Server Database

Submitted by janobe on
In my previous tutorial, I tackled about how to load data in C#.Net and SQL Server Management Studio Express. So, if you have already mastered it? This time, I'm going to teach you how to update in the database in C#.Net and SQL Server Management Studio Express. This process is so simple that you could easily follow.

OCR\ICR\OMR Form Scanning System

Submitted by maverickosama on
i have developed a system which scan any hand filled image from scanner, recognize it and save its data to database. I used API Leadtools for recognizing. Modules included in the project: Scanning Recognition Verification Quality Assurance Create SQL Tables Dynamically Mapping Of Any Random Form Add Fields at RunTime Layout Mapping

Step By Step Guide On How to Create an Enrollment System

Submitted by admin on
If you are a beginner and would like to have a walkthrough on how to create a simple enrollment system then visit http://www.code-expert.com/2011/07/simple-enrollment-system.html. This site is design to teach you on how to create a windows application using Visual Basic.NET 2008 and SQL Server 2005 Express Edition. The main goal of this site is focus on learning VB.NET from scratch without

Search an object in Dababase

Submitted by planetsourcecode on
Always forgot to remember one query. So for them only Below query you can any table, stored procedure or views who ever have that expression as a column or object name. SELECT * FROM SYSOBJECTS WHERE ID IN (SELECT ID FROM SYSCOMMENTS WHERE TEXT LIKE ‘%PRODUC%’) The query produced all the object names. where ever it finds expression like ‘PRODUC‘