Can someone with a USB, ISA, or PCMCIA (laptop) modem, please, please, please, pleeeaaase, test this class I've made? (Attached)
I need to know if it works, because I don't have all those kind of modems.
The class enumerates modems and the ports they are connected to.
And IF ever someone knows if communicating with USB modem via RS232 (or MSComm) is possible, please let me know.
I posted this, because the following thread seems to have been forgotten:
http://www.vbforums.com/showthread.php?threadid=273454
I thank you very much.
Class usage:VB Code:
Dim myME As New ModemEnumerator If myME.Modems.Count > 0 Then Dim mt As Integer For mt = 0 To (myME.Modems.Count - 1) ComboBox1.Items.Add(myME.Modems.Item(mt).Name) Next mt End If
