Programmer's Corner Source Code

Backup and Security Solutions 10% off all products with promo code: VISI-P1YR
Get the Programmer's Corner FireFox Search Plug-In

Select a Language

Recent Additions:

December 7, 2007

islem v1.0 - By: Anonymous

C++ - Math

A simple program to find target number with using 6 (or any) numbers and (+,-,/,*) operators Example: Target = 673 Numbers = 3, 4, 6, 7, 9, 25 Solution: 25 - 9 = 16 7 * 6 = 42 4 - 3 = . . .

 

November 18, 2007

Detect 64 bit operating system - By: Spider Harper

Visual Basic 6 - Operating System

A function to determine if the windows operating system is 64 bit.

 

April 9, 2007

Java Mail 2 send mail - By: mj

Java - Internet

 

December 4, 2006

Query Results as XML rather than standard rowsets - By: siddharth sinha

SQL - Data Access

Note-This Clause is valid only in the SELECT and not valid in COMPUTE BY or FOR BROWSE, view definition , cursors and for further processing in a stored procedure

 

December 4, 2006

Stored Procedure Using Cursor - By: Anonymous

SQL - Data Access

Cursor is a database object used by applications to manipulate data in a set on a row-by-row basis, instead of the typical SQL commands that operate on all the rows in the set at one time. For . . .