8 months ago I posted this thread:
Neural networks object: digital brain, a test program for my neural network object that recognizes characters drawn with the mouse.
I've been working on the next version for quite a while and most of it is finished now. Some things are missing but I'll give you the prerelease here.
Quick startUnzip the package somewhere and run digibrain.exe. Initially, the brain is filled with random crap. Push the 'load memory' button on the bottom right. Find 'charbrain.brain' in the same dir as digibrain.exe and open it. Now the brain will be in the state as I trained it. Start drawing characters onto the tablet and you will see the windows below show the results. Above the tablet (where the text 'drawing tablet' is) are two hidden hotspots, when you click left in that area you will delete the last character in the result list. The right part of that area adds a space to the list. That way you can write an entire sentence with your mouse

.
Each character needs to be drawn as one continuous line, and in the same way as it was trained.
Training modeWhen you click training mode you will see a directory listing of the dir. 'train_sets', which contain training sets for the digital brain. Currently you can't add these with the tool, only modify them, but you can copy an existing .tdat file so you'll have another file to store training data in. When you click one and then click on one of the characters, you can see a stored drawing of that character. Each set contains drawings for all characters (white are chars without data, blue ones have data and the green one is the active one). When all characters have a stored image, you can train the brain with that training set using the 'train' button, optionally changing the number of times the whole set is shown to the brain (1, 10 or 100x). All training will modify the existing brain data. So you can use many training sets and train the brain with it in turns. If you want a clean brain, use the brainwash button

.
_preset 1.tdat and _preset 2.tdat are the sets I used to create the charbrain.brain file, the empty ones are for your own use and the _numbers ;-).tdat file doesn't contain characters but the numbers (1-9,0) for the characters a-j, the others are just set to a dummy drawing. The numberbrain.brain file contains the brain trained with this set, just load it and draw numbers.
noteIn the training mode you can see in what way the characters are drawn, in run mode draw them exactly like in training mode. Even the direction is very important (the U is drawn from left to right, V from right to left). Some characters look a little weird because they had to be drawn as a continuous line.
I hope it's a bit clear, I wrote the text above in a hurry...The final version will have some documentation with it, and the full win32asm source code.
Have fun!
Thomas