Thursday, March 13, 2008

MySQL Extractor


MySqlExtractor is small sofware for fast connect to MySql Database, with SQL command and Export capability.

Download

Send Keystrokes to Applications Using Windows' API SendInput

Send virtual keystrokes using the Windows API SendInput. (SendKey, SendKeys, Keyboard Output.) Allows you to send keys to the application in focus.


Download

Binary To Decimal

Converts Binary to Decimal. I coded and compiled this in linux using pure pascal :)



Download

hex, bin, oct to dec 1 line commands

Convert hexidecmial, decimal, and octal to decimal


Download

Elevator



Show an elevator with control


Download

HTML Editor v2.0



HTML Editor v2.0

!**************************************
! for :HTML Editor v2.0
!**************************************
http://synedit.sourceforge.net/



Download

Advanced System Information

New! A program that provides comprehensive information on your computer. - Example: CPU - HDD - RAM - Windows - Network and... .

Download

IntToStr and StrToInt


Using this unit, you can convert String or a PChar to an unsigned DWORD or a signed Integer. The purpose of the code is to demonstrate the conversion's steps. The code has explanation and comments.

Download

SUDOKU Cracker



This program can SOLVE MEDIUM SUDOKU PUZZLES
Download

Encrypt And Decrypt Base 64 Indy Componet

How to encrypt and decrypt base 64

Download

Movie DB Management System


Read Carefully ----------------------------------- This is a fully completed very useful burned disk(DVDs, CDs) management system developed using mysql as the database. All used libraries are free and opensource. Very Important Instructions ---------------------------------------------------------- Becuase administrator removes all assemblies (dlls & exes) I didn't upload one necessary dll. ********************************************************** please download libmySQL.dll and mysql.pas it's free.


Download

Balloon Tool Tip

Balloon Tool Tip is a kind of message used in notification area. it is really beautiful!

Download

Fiber Optic Simulation Application


Fiber Optic Simulation Application is a simulation application that simulate meridional and skew rays inside fiber optic cable.This application can simulate step or graded index fiber. It also can simulate single or multimode for meridional ray.For skew ray, there's only single mode.


Download

Windows Control


This project is a to control some windows functionlities like shutdown, restart, monitor sleep, get windows version, on screen server, sound card check ... by ur self. Steps -----------------------------
1.First start control.bdsproj then build the project [menubar -> project -> build control], this will generate a dll file with name control.dll.
2.Then start Project1.bdsproj and run the application. All needed functions are in control.dll like 1.Getting windows version 2.Checking sound car
3.All Windows api calls like shutdown, restart, monitor sleep, screen server
**************************************************

Download

Exam Processing System


Aims at improving the existing paper-based Examination system in Kenyan Primary Schools by making it faster, flexible to change, accurate, reliable, secure, easily understood and with relevant reports.

Download

Save/Load Treeview with Propertybag


Drop modTVpropbag.bas into your project and you can save and restore treeviews with 2 simple calls. This is as close to "plug-n-play" as it gets... even a very new newbie can make this work in minutes. I include a demo project for your perusal. Supports multiple treeviews (easily modified to work with other controls). Saves and restores: Nodes/child nodes, Node.Key, Node.Tag, Icons, Expanded state, sorted state, checked state. What else could you want for nothin'? Version 1.0.1 implements the .tag property (per request) and is considerably cleaner/optimized code.

Download

Embedded Forms (Tabbed, 2 forms 1 window)


This code allows you to embed a sub form unto a "main" form. Supports loading/unloading. Uses tabs to load and unload 3 simple sub forms. This allows you to have cleaner code by splitting UIs into different forms instead of having invisible frames on the same form




Download

A Number Format And Base Converter


This tool was created to help adapt non-VB flags to VB
constants. It can handle numbers 0x03 and 03h hex, also 03L and 03& long ints,
as well as VB &3 oct, &H3 hex and 3 dec formats. It will succeed on incomplete
input and will normalize suffixes without numbers appended, so you could enter
"$" or "x" to know these are hex. This is not ground-breaking, but I decided to
improve it with some great number base and binary converters found on PSC to try
to produce a useful conversion tool. Code from other authors has been used
within their usage guidelines and to the benifit of these copyright owners, with
no intention to infringe on their copyright. Acknowledgement is also in the code
itself. This is not really intended to be "the best way" to convert number
bases, but rather a fun(tional collaboration. Working demo with conversions
funcs in 11k bas for easy re-use. 25k zip.
+++++++++++++++++++++++++++++++++++++++++++++++ For base conversion I found
clever examples like bitwise operations and look-up tables to do the
conversions, but settled for VB's built in funcs to keep it simpler - I use
Hex$(), Oct$(), and CDbl(). You could easily replace these and call out to your
own code solutions. I use CDbl() because it returns a native double and not a
variant. I also recall some limitations with CDec() in certain situations that I
cannot now reproduce? +++++++++++++++++++++++++++++++++++++++++++++++ For
numbers greater than VB Longs I decided to break the job up into &H7FFFFFFF
sized recursions! A great idea but rather tricky. I found some of Randy Birch's
code that converted an unsigned windows long into a VB double to access the 2 *
&H7FFFFFFF positive values found in "to seek into 4G files instead of the 2G
limit", but cannot find again - if this was yours let me know. From this small
code sample I was able to implement handling of unlimited sized decimals! Well,
limited by the 32 bit system anyway.
+++++++++++++++++++++++++++++++++++++++++++++++ Now for binary conversion.
Thanks heaps to MrEnigma for his binary to decimal code, as well as to Fausto C.
Arruda for his number to binary code I found in his Hex Editor. These two pieces
of code are what makes this program capable of handling decimal to binary and
binary to decimal up to around 1.79769313486231580779E+308! That's a lot of
zeros and ones! +++++++++++++++++++++++++++++++++++++++++++++++ Next was to
output positive and negative numbers correctly as binary values. The solution
was to convert negative numbers to unsigned format (unsigned and signed formats
share binary values) and display their correct binary representation. For the
unsigned to signed number conversion Adam Kachwalla's conversion code was just
the ticket. +++++++++++++++++++++++++++++++++++++++++++++++ I have also enabled
XP themes. I used a handy mod and res file I zapped out of Amer Tahir's XP
themes demo control - thanks Amer for this great straight-forward solution.
+++++++++++++++++++++++++++++++++++++++++++++++ Confirmation that the binary and
base outputs are correct would be appreciated. This project has had two lives so
there may be oversights? Bug fix 1-Mar-08: GetBase was modifying the byref input
.

Download

Folder locker



This code will show you a simple lock, it's safe but secure for window

Download

Prevent Multiple Application Running

This code shows you how to prevent the multiple running of the program in two ways (1) First Code is very simple and the(2) Second code is a bit advance. You can use anyone of this code Just try it!

Download

Object-Based Programming Example


Basic implementation of an object-based schema by Trent Jackson. As many Java or C++ programmers will undoubtedly know -- OOP (object orientated programming) results in clean, reusable code that is far easier to maintain than procedural methods. Unfortunately, however though -- VB isn't an OOP language, but it does come close in a round about way. VB supports classes with ability to create any instance of a class, assign instance variables and create accessor & mutator methods. However there is no provision for inheritance or polymorphism, so technically speaking, despite what some believe – classic VB isn't a true OOP language. Polymorphism is a powerful mechanism that allows objects to be processed differently according to their type / class. Inheritance is as equally a desirable trait to have since it allows classes to be extended with other classes. There are still enormous benefits in using classes in VB over traditional procedural programming. In this example here you will see just how simple it is to adopt an object-based way of programming. The example also illustrates how to avoid using fixed arrays by resorting to a dynamic structure, which grows and shrinks in size to suit the amount of data being used, identical behavior to the vector structure in Java. Only a 5 KB download.

Download

Excel to Access



Transfer Excel Data To Access


Download

Retrieves SRTM data

Retrieves SRTM data (Hgt files) from NASA Free FTP Servers, Unzips the data, moves that data into a 2D Array, Creates a 2nd 2D Array for storing Colors and apply shades, draw the map in Screen and allows the user to save the image. the map can be any peace of earth in the world, the user selects by clicking the desired SRTM Cell and each cell coordinates are shown on screen.

Download

Windows Button (Hide Start)

This program will Hide the "START" button of Windows..try it...

Download

Barcode Generator

This program will generate Barcode 39

Download

Button the multi style button



Button - update (original v3.6.2 by Fred.cpp) Reported bugs fixed: Empty Caption is now working. Trigger the "End" command dont crach VB.

Download

Free Worm Scanner source code



Worm Scanner scans and deletes known worm infections in your PC (like Aikelyu, TLA (Taga Lipa Are), Esti Marinduque, RavMon.exe, Krag.exe, etc.). If you don't have a web server, try to use WormScanner.html and run/open it in Internet Explorer.

Download

Saturday, March 1, 2008

Web Page Document Dissector And Coder Friend


his utility serves two purposes. By setting property [Control_Mode] to (user_mode) this control basically serves as a web browser with lots of additionally functionality when it comes programming web pages. There numerous methods and events that allow you

Readmore

Network Profile Manager



I needed this desperately at work to quickly change IP Address and networking profiles. XP lets you select one alternate profile but that is not enough if you work from multiple remote locations. Also shows a good method of integrating command lines into

Readmore

MultiThread Search Engine Reporter




This is a MultiThread Search Engine Reporter. I wrote it back in 2001. It is database driven and can have new search engines added to it very easily. It generates/compiles a HTML report page at the end (I remember this process taking some time for larger ..

Readmore

Active X DLL Made Into Windows DLL

Ever Wanted to make a Windows Dll but stuck with VB Active X Dlls? Well, Here is your answer. Make Your Active X Dll into a Regular Windows Dll Complete with .Def file maker addin Original Article http://www.windowsdevcenter.com/pub/a/windows/2005/04/26/c ...(description truncated)

Readmore

Expros


This project aims at improving the existing paper-based Examination processing system in Primary Schools in Kenya by making it faster, flexible to change, accurate, reliable, secure, easily understood and with relevant and apprehandable reports.

Readmore

BG Antivirus 2007

contain many features to help clean virus on the computer.

Readmore

Exam Processing System


Aims at improving the existing paper-based Examination system in Kenyan Primary Schools by making it faster, flexible to change, accurate, reliable, secure, easily understood and with relevant reports.

Readmore

What is Visual Basic?

Visual Basic (VB) is a RAD (Rapid Application Development) tool, that allows programmers to create Windows applications in very little time. It is the most popular programming language in the world, and has more programmers and lines of code than any of its nearest competitors.

Data Preparations Methods for Data Mining Process

The purpose of this small article is to introduce some basic terms which are used in many Data Mining software during data preparation. The article is written in Turkish in order reach to the users who put their hands into Data Mining mess.

Readmore

My Simple Pagination Tutorial for an Access Database

This is a very simple tutorial to follow for adding pagination to a page that connects to an Access database. The download is a tutorial that I wrote in HTML format. Please vote for my code and comments are always nice.

Readmore

Pengenalan Bahasa C

Memperkenalkan Bahasa C kepada pemula.

Readmore

Creating Classes

Hi everyone. This is my 2nd submission in java. This code is an example of creating your own class, declaring attributes and methods to your own classes, using the "this" reference to access instance data, creating and calling overloaded methods, constructors and import and creating packages.

Readme

RegFree COM / SxS Deployment with VB6

Discuss ways to deploy your VB6 application without requiring installation, placing files into the system folder, or registering your OCX/DLL files.

Download

Source Code For You

Free Source Code For You.

* Visual Basic
* PHP
* Delphi
* JavaScript
* FreeBasic
* etc