|
I'm practicing an inventory system, I want to set a function is
Out of stock alert when goods reach the minimum set quantity
I wrote such a piece of code, it compiles without errors, but it doesn't show up
int sum;
sum == Table3-> RecordCount;
do
{
Label14-> Caption = ("Out of stock !!!");
} while (sum <= 10); |
|