Source Code

German Keyboard Modifier

I was asked the question “how can i get German letters with my keyboard” and so i have reworked an old application into a German Alphabet Helper app.  You can simply hit the letter you want 3 times to transform it into the German Equivalent. At the moment only Ö ö Ä ä Ü ü ß are supported but this is easily modified.

To install simply  Click Here to download and follow the steps below.

› Continue reading

Friday, August 6th, 2010 Applications, Source Code, Tools No Comments

A dock style shortcut bar.

This project is written in visual basic. The application sits above the clock and pops up when the mouse cursor hovers over it … clicking the icon runs the corresponding script. The scripts contain a list of programs, if the first one cannot be found; the second one will execute and so on. Download the application & sourcecode here.        

 There is also a general script that loads on boot that allows you to set shortcut keys, at the moment the application will launch google if F12 it pressed. Once run, the application will set itself in the registry to run when windows loads. This option can be disabled by right clicking the programs icon next to the clock and unticking the autoboot option.

Wednesday, May 19th, 2010 Applications, Source Code, Tools No Comments

Javascript Sparks

This site I created to test a sparks function I wrote in javascript. This page also contains examples of floating text, a hidden puzzle game (click glowing button on tower) and a few other bits and peices. View the page here or click here to download the source.

Sunday, May 16th, 2010 My Web Designs, Source Code No Comments

Telephone Messenger – PhoneMsg

Phone Messenger is a fairly recent application I came up with. It simply drops your messages on an SQL database and Notifys you (within 30 secs by default) if someone sends you a message. When the app first launches it asks you to select your ID from a list and then it just sits quietly as an icon down near the clock. It will automatically add itself to the registry so it loads with windows, u can disable this feature by right clicking the icon and unticking the autostart option. Download Source & Server Files Here.

› Continue reading

Internet Kiosk Software & Parallel Port Interface

 This Visual Basic Project replaces the explorer.exe file on a windows machine to turn it into an internet kiosk. The parallel port is scanned for signal, on collecting a signal the application adds time to the browser. When the time runs out the session expires and a store advertisment appears. Hooking a coin reader into the parallel port was a bit too buggy, sometimes the system wouldnt read the coin drop, so we implemented a ticket system. › Continue reading

Friday, May 14th, 2010 Applications, Electronics, Source Code No Comments

Fractal Generator (MandleBrot)

Mandlebrot fractalSounds fancy doesn’t it, this application was a strange one to build. Its great fun to zoom down and claim your own spot in fractal space =D.

After reading a bit about how fractals are formed, I got a basic idea of how to go about drawing one. The program starts at a point on the screen, then it grows in intensity, when it gets to our desired value (derived from the equation) we put the color down that represents that value, then move on to the next pixel … sometimes the pixels do not grow to this desired value quickly so we have a cut off point (the black areas represent these points). From this point i simply multiplied everything or divided everything to zoom and shrink the image. It was great fun to make but requires a pretty powerful computer to run after a few zooms. Turning the threshold down will make the app run smoother but youll get a lot less detail.

Download Source Code and Application Here

Friday, May 14th, 2010 Applications, Source Code No Comments

Text Manipulator / Replacer

This cool little app I built to play a joke on a guy at work, every time he types certain words the application replaces the word with whatever I tell it. You can add as many words and their replacements to the replace.txt file as you like. (actually 500 is probably the limit). Download Source and Application Here

As well as being a great prank tool, you can use this app to make shortcuts. As a coder u might like to type <IMG and have the app replace that with a full line of <img src=” width=” height=” />. At the moment I have it running at work if we type “foodz” it presents us with a list of phonenumbers for the local pizza / sandwich shops etc =D

When defining your replacement text you can put some special characters in braces, for example: {enter} {tab} {up} {left} & many more, for a full list you can look at the visual basic sendkeys function here.

Friday, May 14th, 2010 Applications, Source Code No Comments

Detect Signal On Serial Port VB6

MSComm1.CommPort = 1 ‘use serial port 1
MSComm1.PortOpen = True ‘open it up
If MSComm1.CommEvent = comEvCTS Then ‘comEvCTS = change in the CTS pin
lblResults.Caption = “signal received”
End If
MSComm1.PortOpen = False

Friday, May 14th, 2010 Electronics, Snippets No Comments

Simple Magnifier Application

This little app simply freezes the screen and pulls up a magnifying glass. Normal operations continue in the background, its just a snapshot of the screen that your looking at. Ive tested it in windws XP, Vista and Window 7 and its still a fantatsic little app to add to your quickstart menu next to start button. Download Visual Basic Source here or if u just want the Magnifier Here.

Friday, May 14th, 2010 Applications, Source Code No Comments

Visual Basic Shuffle Picture Game

this is a very simple picture shuffle game, you have to move pieces of a picture into their correct position, but they grow and shrink in different positions. Source Code is Included as well as Executable. Download Here.

Friday, May 14th, 2010 Applications, Source Code No Comments