Hi Aaron,

I talk to multiple Windows midi devices no problem. I just instantiate and open 
as many WindowsMidiInputMBS's and WindowsMidiOutputMBS's as are needed:

  // Open every Midi device in the system
  dim wmin As MyWindowsMidiInputMBS, wmout As MyWindowsMidiOutputMBS
  For i as Integer = 0 to MyWinMidi.NumberOfMidiInputDevices-1
    wmin = new MyWindowsMidiInputMBS
    WinMidiInput.Append wmin
    WinMidiInput(i).Open(i,4096)
    WinMidiInput(i).Start
    WinMidiInput(i).DeviceNum = i
  next
  for o as Integer = 0 to MyWinMidi.NumberOfMidiOutputDevices-1
    wmout = new MyWindowsMidiOutputMBS
    WinMidiOutput.Append wmout
    WinMidiOutput(o).Open(o)
    WinMidiOutput(o).DeviceNum=o
  Next

Julia



----------------------------------------------------------------------

Message: 1
Date: Sun, 1 Apr 2012 14:01:59 -0400
From: Aaron Andrew Hunt 
<[email protected]<mailto:[email protected]>>
Subject: [MBS] multiple devices with Windows MIDI ?
To: 
[email protected]<mailto:[email protected]>
Message-ID: 
<[email protected]<mailto:[email protected]>>
Content-Type: text/plain; charset=us-ascii

On Mac it's easy to connect multiple MIDI source devices as unique input 
endpoints.

On Windows, connecting a source device disconnects any currently connected 
source, so only one can be connected at a time.

Is there no way to connect multiple MIDI input sources on Windows?

Thanks,
Aaron

_______________________________________________
Mbsplugins_monkeybreadsoftware.info mailing list
[email protected]
https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info

Reply via email to