FAST REPORT 條件改顏色
如題:
在textbox中,依值改變顏色
private void Text8_AfterData(object sender, EventArgs e)
{
Decimal CHECK=Convert.ToDecimal(Text8.Text.ToString());
if(CHECK<50)
{
Text8.TextColor=Color.Red;
}
}
自我LV~