下面是我在报表脚本中些的事件
//Report.DetailGrid.Group1.GroupHeader.Group1.FieldBox55.GetDisplayTextScript(字段框.取显示文字脚本)
function Report.DetailGrid.Group1.GroupHeader.Group1.FieldBox55.GetDisplayTextScript(Report, Sender)
{
  if( Sender.DisplayText.AsString== "1")
  {  
  Sender.DisplayText="应税";  
  }
  else if (Sender.DisplayText.AsString=="2")
  {
  Sender.DisplayText="免税";   
  }
  else if (Sender.DisplayText.AsString=="3")
  {
  Sender.DisplayText="零税";   
  }  
}这个不知道对不对 我感觉是对的 在我的报表设计器中好像就没执行过 要是错了也该报错  请高手看看对不对 要是对的话 估计我用的报表设计器就真的有问题了 ,之前的日期时间格式化都不行  要是不对请帮我整理下