Icon View Incident Report

Serious Serious
Reported By: Mark Brooks
Reported On: 1/31/2018
For: Version 2.06 Build 11
# 4629 Assigning to the FormatSettings ShortDateFormat Property During Initialization Causes Design Error

I'm working on a large project (30+ forms, multiple components etc) and suddenly I'm getting this error when I try to open a form in the IDE:

- "Error loading the XXX Form. Value conversion error."

This happens for every form that I try to open.

unit globals;

interface

uses WebCore;

type

   TTestComponent = class(TComponent)
      end;

implementation

initialization
  with FormatSettings do
    begin 
      ShortDateFormat := 'dd/MM/yyyy';
      StartOfWeek := 1;
    end;
finalization
end.



Comments Comments
In order to reproduce this issue, the above TTestComponent must be installed into the design-time library in the IDE. The issue was caused by the design-time code execution environment not handling character to string conversions properly.


Resolution Resolution
Fixed Problem on 2/2/2018 in version 2.06 build 12


Products Affected Products Affected
Elevate Web Builder
Elevate Web Builder Trial

Image