Login ProductsSalesSupportDownloadsAbout |
Home » Technical Support » Elevate Web Builder Technical Support » Support Forums » Elevate Web Builder General » View Thread |
Messages 1 to 2 of 2 total |
String index change under 1.03b1 |
Sun, Jan 19 2014 12:46 PM | Permanent Link |
Malcolm Taylor | I recompiled a small app and found the compiler balked on a line that
used to compile: {code} // 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; {code} The following expansion compiles fine under 1.03 {code} .... d := FormatSettings.ShortDayNames[i]; grdCal.Columns[i mod 7].Caption := d[1]; .... {code} No big deal. I guess it ran out of post-it notes before it got to the end. <bg> Or did I miss something...... Malcolm |
Sun, Jan 19 2014 1:25 PM | Permanent Link |
Ronald | Hi,
I had the same, just remove then "[1]". Maybe due to the conversion to 1.03 Greetings, Ronald "Malcolm" schreef in bericht news:9E4E342B-40C9-409E-8AFB-40F47A720026@news.elevatesoft.com... I recompiled a small app and found the compiler balked on a line that used to compile: {code} // 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; {code} The following expansion compiles fine under 1.03 {code} .... d := FormatSettings.ShortDayNames[i]; grdCal.Columns[i mod 7].Caption := d[1]; .... {code} No big deal. I guess it ran out of post-it notes before it got to the end. <bg> Or did I miss something...... Malcolm |
This web page was last updated on Monday, October 14, 2024 at 05:15 PM | Privacy PolicySite Map © 2024 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |