The serial protocol just isn't built for that. It just doesn't work that
way. It's desinged to talk to one device at a time, and really onl from one
app. There are drivers that can virtualize the port so multiple apps can
receive data from one port (like GPS data), but even those are limited in
utility, as if you send to the device, a response will make sense to only
the sending app.
In your case you should disconnect from one, then connect to the other.
There's just no way around it.
--
Chris Tacke
OpenNETCF Consulting
Managed Code in the Embedded World
www.opennetcf.com --
[quoted text, click to view] <Dan.Bulwinkle@gmail.com> wrote in message
news:1168570812.881334.116960@38g2000cwa.googlegroups.com...
> I've been searching and researching for the past several days for ways
> to have multiple virtual serial port connections via bluetooth, but I
> have yet to find a decent solution. It seems most people are asking the
> same question but no one has an answer.
>
> I have two devices from which I want to send and receive data (GPS &
> Printer). Individually I can connect to each device in .NET, so I was
> much disappointed when I realized both devices couldn't be connected at
> the same time. I have Windows Mobile 5.0 running on an iPAQ. Basically
> long story short I am wondering if anyone knows how to access both
> devices using Bluetooth in .NET?
>
> -Dan
>