0

我有一个 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;
            }
        }
4

1 回答 1

1

尝试这样的事情:

    .....
    DBConnection.Close();

    bool found=false;

    foreach (var item in listBox1.Items)
    {
        var entry = item.ToString();
        if (entry.Contains(returnvalue.ToString()))
        {
            listBox1.Items.Remove(item);
            listBox1.Items.Add(entry + " extra add");
            found = true;
            break;
        }
    }

    if (!found)
    {
        listBox1.Items.Add(returnvalue.ToString());
    }

    textBox1.Clear();
    .....

更新

关于您在评论中的额外问题:

您可以使用string.LastIndexOf查看最后添加的单词:“In”或“Out”。然后你拿另一个。

LastIndexOf 返回搜索字符串最后一次出现的索引,如果不存在,则返回 -1。

在我看来,你会得到类似的东西:

private string CreateNewEntry(string current)
{
    var indexIn = current.LastIndexOf("in"); // Get the last index of the word "in"
    var indexOut = current.LastIndexOf("out"); // Get the last index of the word out

    if (indexOut > indexIn)
    {
        return current + " in "; // if the last "out" comes after the last "in"
    }
    else
    {
        // If the last "in" comes after the last "out"
        return current + " out "; 
    }
}

这将返回当前条目+“ in ”或“ out ”。Anbd 然后您只需向其中添加额外的东西。要调用它,请将 Add-sentences 替换为:

listBox1.Items.Add(CreateNewEntry(entry) + " extra stuff");
于 2013-09-27T11:14:29.023 回答