I made a media player application from C#.net with Viscomsoft Activex
when i installed fxsound, the viscomsoft activex installed in my app didn’t work properly.
especially when changing audio channels from left to right or vice versa,
I assume there is a DLL crash between viscomsoft and fxsound
Here’s a short snippet of my application code when changing from left to right audio channel
//left channel
player.volumeaudiochannel = 0;
//right channel
player.volumeaudiochannel = 1;
//stereo channel
player.volumeaudiochannel = 2;