How to find available COM ports in my PC? I am using framework v1.1. Is it possible to find all COM ports? If possible, help me solve the problem.
|
|
As others suggested, you can use WMI. You can find a sample in CodeProject
|
||
|
|
|
|
Hello, Since you are using .net 1.1 one option is to use the AxMSCommLib control. Here is a web page that assisted me in starting to use AxMSCommLib control. There is even a FindDevicePort() method listed that can be easily modified. I have since switched to System.IO.Ports which appears to be much more robust. http://www.devhood.com/tutorials/tutorial%5Fdetails.aspx?tutorial%5Fid=320 Thanks Joe |
||
|
|
|
|
How about asking a straight question from operating system:
|
||||
|
|
|
The available serial ports can also be found at the values at the |
||
|
|
|
|
Use
cheers, |
||
|
|
|
|
There is no support for SerialPort communication in .net v1.1. The most common solution for this was to use the MSCOMMCTL active X control from a VB6.0 installation (import into your .net project as a COM component from the add reference dialog box). In later versions the Serial Port support is available through the System.IO.Ports name space. Also please note there is no API which will get you the list of free ports. You can get a list of all the port names and then try opening a connection. An exception occurs if the port is already in use. |
||
|
|
|
|
WMI contains a lot of hardware information. Query for instances of Win32_SerialPort. (OTOH I can't recall how much WMI query support was in .NET 1.1.) |
||
|
|
|
|
Framework v1.1 AFAIK doesn't allow you to do this. In 2.0 there is a static function
http://msdn.microsoft.com/en-us/library/system.io.ports.serialport.getportnames.aspx |
||
|
|
