Results for "Volume: 7_2009-2012"
DjGfXLCDSIM is a script simulating a 128 * 64 graphic LCD with a KS0108 or HD61202 controller. All instructions but read data, read status and display start line are supported. The aim is to help people trying to learn how to use such displays.
This is a Class to help you on Registry functions. This Class in WIN32(so it works in MFC, ATL, WIN32) and it is full UNICODE. Most of these Class found on internet do not delete properly Key and SubKey in WinNT (or they need help of Shlwapi.dll, and it is a complicate story). This Class use Instead a Recursive function to do the Job (no special include need). It uses a template for all those special structure like CPoint, RECT, ... you named it. PS:: Here is the latest release.
Check if that directory exists before running the risk of an error and/or data loss. One of the few that really works. No API, no function calls. Existence check and logic included. Incredibly simple.
I've added JPEG and Targa loading, and loading and saving some types of TIFF's, and fixed some bugs in the bitmap class.
Some functions to show the use of recursion in programming. This contains Fibonacci,Towers of Hanoi,Ackermann function
Drawing applet. You select the colors, thickness of your lines and different geometry forms from a drop-down menu. You can also freehand a drawing. Have Fun !!!
This is a command-line compression and extraction tool using an Huffman algorithm. The source code also includes heap and bit stream management functions.
This article is all you need to learn the basics of game development. It will teach you how to use variables, how to manipulate strings, how to read user input, and how to build the basics of a multiplayer game.
This javascript will get the number of days in a month based upon the year selected.
This code validates the information entered into a form using javascript. It validates the name, location, date, and e-mail address.
Based on Djikstra (a pathfinding algorithm), this VB.NET project has an AI (aritificial intelligence) to find the shortest path between two locations on a map. Then an animated sprite will walk along that path. There are 2 types of tiles: passable and blocked. The passable tiles have different cost to cross (e.g. cemented roads are favored over sand). The commented pathfinding code is written on a class so that you can easily incorporate a pathfinding AI in your own game. This is also integrated with a map editor where you can create, save, and edit map from 5x5 to 25x25 in size. If you cannot see the entire map, scrollbars are provided. There is also a minimap which represents the entire map. The graphics method is GDI+ (no external API calls or DirectX). The drawings are optimized by rendering only the parts that are really needed to be drawn. - Arvin Meralpis
Write a file to a disk
2 functions 1 that encrypts a passed variable(string) and the other decrypts the data(path of file) Mainly used for a single password. The code encrypts each character with a simple formula, the more characters the better the encryption. The limit on the password length is 50 characters.
A simple calculator that feature's a swing-like interface. This program can be run as an applet or a stand-alone application.
for online filing of leave for employees, this will be approve by the heads of the company. it compose of the admin and the director. to fully view the system you can visit http://ols.22web.net
This is a cool javascript that creates a Trivia Quiz. You can change the number of questions, answers, and time allowed to answer the question. When all questions are done, it displays the amount of questions correct.
This program is to get a salesmans commision pay and all that good stuff you will learn a lot from this example. This is a project i had to do with school so plz dont judge it to harshley
This small utility aids programmers into viewing and editing the data within binary files. Works with large files very nicely. Enter either the hex, decimal, or text value of each byte. You can also edit bits. I use programs like these when learning how to read file structures such as MP3, GIF, and JPG files. Also comes with a handy setup project for easy installation.
Website Navigation / Menus: Cross browser, automatic positioning, large menus can be added with minimal change in the file size, comma separated arrays can be built easily via ASP/JSP/Perl/ect.
This example shows how you can use OleDbSchemaGuid in ADO.NET to fetch Schema information from database. It also shows, how you can use DataGrid control, to fill records from dataset, and also how to update records from DataGrid to database using OleDbDataAdapter and OleDbCommandBuilder. In this example List box is filled with Table names of a Specified Database, and by clicking on the table name, you can fill records in the DataGrid. The wonder of the ADO.NET is that it is total disconnected scenario, and this helps a lot in Web Applications.