Icon View Incident Report

Serious Serious
Reported By: Malcolm Taylor
Reported On: 1/19/2014
For: Version 1.03 Build 1
# 3978 Compiler Issuing Error for String Array Property Character Index Reference

I recompiled a small app and found the compiler balked on a line that used to compile.


 // set grid column caption to first letter of day name
 for i := 1 to 7 do
 begin
   grdCal.Columns[i mod 7].Caption :=
FormatSettings.ShortDayNames[i][1]; << Stops here
 end;

Workaround:

   d := FormatSettings.ShortDayNames[i];
   grdCal.Columns[i mod 7].Caption := d[1];



Comments Comments and Workarounds
Thanks to Malcolm for including the workaround.


Resolution Resolution
Fixed Problem on 1/26/2014 in version 1.03 build 2


Products Affected Products Affected
Elevate Web Builder
Elevate Web Builder Trial

Image