資源簡介
用C#通過RS232來實現串口通信,并可對數據實現解析,供用戶根據需求查看數據內容,并且可對數據進行分類查詢。
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Text;
using?System.Windows.Forms;
using?System.IO.Ports;
namespace?RS232
{
????public?partial?class?fclsRS232Tester?:?Form
????{
????????string?InputData?=?String.Empty;
????????
????????//?This?delegate?enables?asynchronous?calls?for?setting
????????//?the?text?property?on?a?TextBox?control:
????????delegate?void?SetTextCallback(string?text);
?
????????public?fclsRS232Tester()
????????{
????????????InitializeComponent();
????????????//?Nice?methods?to?browse?all?available?ports:
????????????string[]?ports?=?SerialPort.GetPortNames();
????????????//?Add?all?port?names?to?the?combo?box:
????????????foreach?(string?port?in?ports)
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????24576??2009-01-08?15:35??RS232\RS232\bin\Debug\RS232.exe
?????文件??????34304??2009-01-08?15:35??RS232\RS232\bin\Debug\RS232.pdb
?????文件???????5632??2005-09-23?06:56??RS232\RS232\bin\Debug\RS232.vshost.exe
?????文件??????24576??2007-01-22?14:33??RS232\RS232\bin\Release\RS232.exe
?????文件???????5632??2005-09-23?06:56??RS232\RS232\bin\Release\RS232.vshost.exe
?????文件???????1154??2007-11-07?21:50??RS232\RS232\ClassDiagram1.cd
?????文件???????4446??2007-11-16?12:35??RS232\RS232\Form1.cs
?????文件???????8723??2007-11-07?21:52??RS232\RS232\Form1.Designer.cs
?????文件???????6207??2007-11-16?12:35??RS232\RS232\Form1.resx
?????文件????????842??2009-01-08?15:35??RS232\RS232\obj\Debug\RS232.csproj.GenerateResource.Cache
?????文件??????24576??2009-01-08?15:35??RS232\RS232\obj\Debug\RS232.exe
?????文件????????180??2009-01-08?15:35??RS232\RS232\obj\Debug\RS232.fclsRS232Tester.resources
?????文件??????34304??2009-01-08?15:35??RS232\RS232\obj\Debug\RS232.pdb
?????文件????????180??2007-11-07?21:36??RS232\RS232\obj\Debug\RS232.Properties.Resources.resources
?????文件????????264??2009-01-08?15:36??RS232\RS232\obj\RS232.csproj.FileList.txt
?????文件????????944??2007-11-16?12:35??RS232\RS232\obj\RS232.csproj.FileListAbsolute.txt
?????文件????????482??2007-01-09?11:09??RS232\RS232\Program.cs
?????文件???????1288??2007-11-08?14:05??RS232\RS232\Properties\AssemblyInfo.cs
?????文件???????2837??2007-01-09?11:08??RS232\RS232\Properties\Resources.Designer.cs
?????文件???????5612??2007-01-09?11:08??RS232\RS232\Properties\Resources.resx
?????文件???????1088??2007-01-09?11:08??RS232\RS232\Properties\Settings.Designer.cs
?????文件????????249??2007-01-09?11:08??RS232\RS232\Properties\Settings.settings
?????文件???????3258??2007-11-07?21:50??RS232\RS232\RS232.csproj
?????文件????????904??2007-01-09?11:08??RS232\RS232.sln
?????文件??????13312??2009-01-08?15:52??RS232\RS232.suo
?????目錄??????????0??2009-11-23?16:40??RS232\RS232\obj\Debug\Refactor
?????目錄??????????0??2009-11-23?16:40??RS232\RS232\obj\Debug\TempPE
?????目錄??????????0??2009-11-23?16:40??RS232\RS232\obj\Release\TempPE
?????目錄??????????0??2009-11-23?16:40??RS232\RS232\bin\Debug
?????目錄??????????0??2009-11-23?16:40??RS232\RS232\bin\Release
............此處省略10個文件信息
評論
共有 條評論