Author Topic: Chek if com port is in use by another application  (Read 16158 times)

Tassos

  • Member
  • ***
  • Posts: 2
Chek if com port is in use by another application
« on: September 29, 2011, 03:09:12 am »
Hello!

It's my first time in the forum and i need your help!
I want to check, in vb 2008 code, if a com port is in use by another application so not to mess with it.
is the a way to do it?

Thank you very much,

Tassos

Jan Axelson

  • Administrator
  • Frequent Contributor
  • *****
  • Posts: 3033
    • Lakeview Research

Tassos

  • Member
  • ***
  • Posts: 2
Re: Chek if com port is in use by another application
« Reply #2 on: September 29, 2011, 11:08:06 am »
Thank you very much!

Duss

  • Member
  • ***
  • Posts: 12
Re: Chek if com port is in use by another application
« Reply #3 on: December 28, 2011, 11:00:26 pm »
The solution to that problem in C# works very well. However, when I try the same approach in C++ (Windows Forms Application) it simply fails to catch the situation and fais into an error (exception) that actually is not caught by the program, even if I use the generic "Exception" type.

It is very annoying because my C++ application sometimes shows an existing COMport but it is already being used by another application and the program cannot determine if it really is being used or not.

Does anyone have an explanation?

Jan Axelson

  • Administrator
  • Frequent Contributor
  • *****
  • Posts: 3033
    • Lakeview Research
Re: Chek if com port is in use by another application
« Reply #4 on: December 29, 2011, 11:06:18 am »
Trying to open the port (with CreateFile) should tell you if it's in use.

Jan