Visual Studio (C#) 내 PC COM Port List 확인
기존에 Visual Studio (C#) COM Port OUTPUT, C# ZPL RS232 출력에 대해서 작성한 포스팅을 보려면!! 클릭하세요!! 여기 클릭!! https://rohsstory.tistory.com/430 이번에는 내 PC에 설치되어있거나 내 PC에서 사용할수 있는 COM PORT 를 확인하는 방법을 다루도록 하겠습니다. using System.IO.Ports; // Form Load 부분에 string[] comlist = System.IO.Ports.SerialPort.GetPortNames(); if (comlist.Length > 0) { cbPort.Properties.Items.AddRange(comlist); cbPort.SelectedIndex = 0; } 폼 로드시에 ..
2020.05.14