void DisplayLowQuantityItems()
{
SqlCommand command = new SqlCommand ("Select Brand from Tires where Quantity <5",con);
con.Open();
SqlDataReader reader = command.ExecuteReader();
StringBuilder productNames= new StringBuilder();
while(reader.Read())
{
productNames.Append(reader["Brand"].ToString()+Environment.NewLine);
}
con.Close();
MessageBox.Show("Following Products quantity is lessthan 5\n"+productNames);
}
如何禁用此項,如果沒有項目少於5?如何禁用能夠警報,如果不需要(臨界水平)
它不斷出現,甚至有不低於5個 感謝您的幫助
使用計數器,將其設置爲0,並將其增加到'while'循環中。在顯示'MessageBox'之前的代碼末尾,使用一個檢查,'if(counter <5)' – Habib
@ adv12,'productNames'是一個'StringBuilder',我不知道count是如何工作的,我猜, OP不得不拆分,然後檢查長度或東西 – Habib
@哈比卜,哎呀我掠過。抱歉! – adv12