rbxslvr:This may just be my computer, but when I am running the VB version and click the record button, the box pops up, but when I click start, nothing happens. I tried it with the C# version and the record feature worked out perfect (except my rythem was a little off

).
The event for the button could very well not be hooked up in the VB version. I try to keep the source code in sync between the projects, but my system is not perfect. If you're just using the compiled version, stick to the C# .exe for now.
rbxslvr:
Also, how would I go about connecting this over a network or the internet, any ideas?
It's nothing that would be automatic. You would likely need to setup a socket server/client to transmit the command information from one machine to the other. You could try remoting or some other type of communication, but I think sockets would be required to maintain the speed required. Even with sockets, I'm not sure you'd get the 20ms per tick timings required by the software.
rbxslvr:
And last but not least, is there a way to delete or disable channels in a sequence, so I can try using your example with my single board? I get an error and it trys to close the program if I click play using more than 4 channels.
Yes, this is a bit of a flaw in the current version. It tries to talk to all 8 channels no matter what. The easiest way to only have it work with 4 is to open the .seq file in notepad, change the <numChannels> parameter to 4 and remove the lines with <channel number> 4-7 .
Hope that helps!