我有一个 Windows Surface Tablet PC 的注册申请。它工作得很好,但我还需要做一件事:
注册通过处于在线状态(对于员工注册)或离线状态(对于学生活动注册)进行。
当它处于在线状态时,我们扫描其中包含 6 位数字 + 'L' 的条形码,进入数据库并提取员工姓名和 6 位代码,然后它将按顺序列出员工姓名列表框。
我要做的是列出它首次进入应用程序的时间,然后当他们再次扫描相同的代码时,它不会删除第一个条目,而是会在现有行中添加另一个时间,例如:
初次扫描:
Ryan Gillooly (123456) Time: 11:40
第二次扫描:
Ryan Gillooly (123456) Time: 11:40 Time: 13:26
等等等等。
这是代码:
Object returnValue;
string txtend = textBox1.Text;
if (e.KeyChar == 'L')
{
DBConnection.Open();
}
if (DBConnection.State == ConnectionState.Open)
{
if (textBox1.Text.Length != 6) return;
{
cmd.CommandText = ("SELECT last_name +', '+ first_name from name where id =@Name");
cmd.Parameters.Add(new SqlParameter("Name", textBox1.Text.Replace(@"L", "")));
cmd.CommandType = CommandType.Text;
cmd.Connection = DBConnection;
returnValue = cmd.ExecuteScalar() + "\t (" + textBox1.Text.Replace(@"L", "") + ")";
DBConnection.Close();
if (listBox1.Items.Contains(returnValue))
{
for (int n = listBox1.Items.Count - 1; n >= 0; --n)
{
string removelistitem = returnValue.ToString();
if (listBox1.Items[n].ToString().Contains(removelistitem))
{
//listBox1.Items.Add(" " + "\t Time:" + " " + DateTime.Now.ToString("HH.mm"));
listBox1.Items.RemoveAt(n);
}
}
}
else
listBox1.Items.Add(returnValue + "\t Time:" + " " + DateTime.Now.ToString("HH.mm"));
textBox1.Clear();
System.IO.StreamWriter SaveFile = new System.IO.StreamWriter(fullFileName);
foreach (object item in listBox1.Items)
SaveFile.WriteLine(item.ToString());
SaveFile.Flush();
SaveFile.Close();
if (listBox1.Items.Count != 0) { DisableCloseButton(); }
else
{
EnableCloseButton();
}
Current_Attendance_Label.Text = "Currently " + listBox1.Items.Count.ToString() + " in attendance.";
e.Handled = true;
}
}