Use Grid To Show Listing Reports

Submitted by shiundu on
How sweet is it to change the presentation of reports?,Its getting boring to create all the reports on crystal report including the listing reports , we take much of our time designing on crystal report .One there is challenge of columns not fitting,second the issue of fonts,third is the formulas and the sucking bit is downloading crystal report itself. Imagine how easy it would be to have a

Crud Operation in Java MySQL In Netbeans Using Swing

Submitted by EEWsagar on
This CODE is going to help you learning how to do basic database operations (CRUD - Create, Retrieve, Update and Delete) using JDBC (Java Database Connectivity) API. These CRUD operations are equivalent to the INSERT, SELECT, UPDATE and DELETE statements in SQL language. Although the target database system is MySQL, but the same technique can be applied for other database systems as well because

A simple Timer using C

Submitted by Arup Kr Goswami on
Hello, This C source code is written in gcc platform (Ubuntu, Linux). It is a simple timer, actually it counts the difference between the Set time (Set by user) & current time. Let the current time is hh-mm-ss of today, so it will run for maximum hh-mm-ss of tomorrow, i.e for 24 hours maximum. Thanks

Snake Game using Javascript

Submitted by jaredgwapo on
In this tutorial, I am going to teach on how to create a snake game in javascript. Just download the source code and follow the instructions below. DIRECTIONS HTML Code snake[i-1].xx) { context.drawImage(snakeTailImage, (snake[i].xx * 32), (snake[i].yy * 32) ); } //following right else if(snake[i].xx snake[i-1].xx) { drawRotatedImage(snakeTailImage,(snake[i].xx * 32), (snake[i].yy * 32), 180); }