Search Results

3
votes

Best way to play MIDI sounds using C#

I'm working on a C# MIDI application at the moment, and the others are right - you need to use p/invoke for this. I'm rolling my own as that seemed more appropriate for the application (I only need …
0
votes

Converting Solution from Visual Studio 2005 to 2008

We have an issue with Visual Studio 2008 crashing on opening any .rc file with the Resource Editor in our project. They worked fine before converting from 2005. We haven't taken the time t …
0
votes

Can you suggest book on program stucture?

If you're starting to get a good handle on the dos and don'ts of object-oriented programming, you can actually get the best of both worlds - being able to quickly make changes to the design of a pr …
0
votes

Is it correct to leave COM1 open all along the program ?

It depends on what your program does and how long it's going to run for. If you're communicating with a modem, for instance, you probably don't want other applications to interrupt your datastream, …