c#窗体应用程序实现软件开机自启,并可以通过路径控制ICT测试软件的打开和关闭。良品条码和不良品条码可以在本地文件夹中的txt文件中获取。当软件开启,就在数据库扫描是否有设置的良品和不良品条码的当天测试记录(数据库ICT_test表中Barcode和Date项的记录),如果存在,lable状态栏变绿并提示“已点检,请进行ICT测试”。就可以通过c#软件开启按钮打开ICT测试软件,进行其他条码的ICT测试。如果数据库中没有设置的良品和不良品条码的测试记录,点击开启ICT测试按钮时,label状态栏变红,并提示“请进行测试前点检”,然后就先进行设置条码的ICT测试,判断扫描到txt_barcode的条码是否为txt文件中设置的良品或不良品条码,如输入的条码不符合,label状态栏变红,并提示“条码错误”,如输入的条码正确并为设置的良品条码,label状态栏变绿,并提示“请进行良品点检”,这时就能打开ICT测试软件,然后将扫到txt_barcode的良品条码通过模拟键盘复制黏贴到ICT条码栏,进行ICT测试,当发现有良品条码的点检报告生成,表示良品点检完成。测试完成后label状态栏提示“良品点检完成”,并将测试记录上传到数据库。
时间: 2023-11-29 20:05:09 浏览: 243
实现软件开机自启可以通过注册表进行设置,具体可以使用Microsoft.Win32命名空间下的Registry类进行操作。以下是实现软件开机自启的示例代码:
```csharp
// 获取当前用户的启动项注册表键
RegistryKey registryKey = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);
// 添加启动项,参数1为程序名称,参数2为程序所在路径
registryKey.SetValue("MyApp", @"C:\MyApp.exe");
```
控制ICT测试软件的打开和关闭可以使用System.Diagnostics命名空间下的Process类进行操作。以下是打开和关闭ICT测试软件的示例代码:
```csharp
// 打开ICT测试软件
Process.Start(@"C:\ICTTest\ICT.exe");
// 关闭ICT测试软件
foreach (Process process in Process.GetProcessesByName("ICT"))
{
process.Kill();
}
```
读取本地文件夹中的txt文件可以使用System.IO命名空间下的File和StreamReader类进行操作。以下是读取txt文件的示例代码:
```csharp
// 读取良品条码txt文件
List<string> goodBarcodes = new List<string>();
using (StreamReader reader = new StreamReader(@"C:\Barcodes\good.txt"))
{
string line;
while ((line = reader.ReadLine()) != null)
{
goodBarcodes.Add(line);
}
}
// 读取不良品条码txt文件
List<string> badBarcodes = new List<string>();
using (StreamReader reader = new StreamReader(@"C:\Barcodes\bad.txt"))
{
string line;
while ((line = reader.ReadLine()) != null)
{
badBarcodes.Add(line);
}
}
```
扫描数据库中的测试记录可以使用System.Data.SqlClient命名空间下的SqlConnection、SqlCommand和SqlDataReader类进行操作。以下是扫描数据库测试记录的示例代码:
```csharp
// 连接数据库
using (SqlConnection connection = new SqlConnection("Data Source=(local);Initial Catalog=ICT;Integrated Security=True"))
{
connection.Open();
// 执行查询语句
using (SqlCommand command = new SqlCommand("SELECT COUNT(*) FROM ICT_test WHERE Barcode = @barcode AND Date = @date", connection))
{
command.Parameters.AddWithValue("@barcode", "goodBarcode");
command.Parameters.AddWithValue("@date", DateTime.Today.Date);
int count = (int)command.ExecuteScalar();
if (count > 0)
{
// 良品条码当天已有测试记录
labelStatus.ForeColor = Color.Green;
labelStatus.Text = "已点检,请进行ICT测试";
}
else
{
// 良品条码当天没有测试记录
labelStatus.ForeColor = Color.Red;
labelStatus.Text = "请进行测试前点检";
}
}
}
```
判断扫描到的条码是否为良品或不良品条码可以使用List类的Contains方法进行判断。以下是判断条码的示例代码:
```csharp
string scannedBarcode = "ABC123";
if (goodBarcodes.Contains(scannedBarcode))
{
// 扫描到的是良品条码
labelStatus.ForeColor = Color.Green;
labelStatus.Text = "请进行良品点检";
}
else if (badBarcodes.Contains(scannedBarcode))
{
// 扫描到的是不良品条码
labelStatus.ForeColor = Color.Red;
labelStatus.Text = "请进行不良品点检";
}
else
{
// 扫描到的条码错误
labelStatus.ForeColor = Color.Red;
labelStatus.Text = "条码错误";
}
```
上传测试记录到数据库可以使用System.Data.SqlClient命名空间下的SqlConnection和SqlCommand类进行操作。以下是上传测试记录的示例代码:
```csharp
// 连接数据库
using (SqlConnection connection = new SqlConnection("Data Source=(local);Initial Catalog=ICT;Integrated Security=True"))
{
connection.Open();
// 插入测试记录
using (SqlCommand command = new SqlCommand("INSERT INTO ICT_test (Barcode, Date) VALUES (@barcode, @date)", connection))
{
command.Parameters.AddWithValue("@barcode", "goodBarcode");
command.Parameters.AddWithValue("@date", DateTime.Today.Date);
command.ExecuteNonQuery();
}
}
```
阅读全文