document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public void displayOption(Common _record, FormRowDisplayOption _options)
  2. {
  3.     SalesTableEx1         _salesTableEx1;
  4.  
  5.     ;
  6.     _salesTableEx1 = _record;
  7.  
  8.     if (_salesTableEx1.SalesStatusEx1 == SalesStatusEx1::Cancelled) //red
  9.         _options.backColor(WinApi::RGB2int(255,128,128));
  10.    
  11.     super(_record, _options);
  12. }
');