Quote Originally Posted by timeshifter
I've written a little program that just tells you what to replace what chord with what in a song, and I'm not sure it could be made any faster, but I just wanted to make sure before I go about updating it to a much higher standard, so any advice on how to "Code It Better" would be much appreciated.

Thanks!
Don't use the following syntax to declaring variables:

Dim diff%
Dim temp%

Instead say Dim myvar as something

You're loops are tiny, you may want to try out unrolling. However I don't know how responsive visual basic will be to that optimization technique.