04-20-2023, 07:46 AM
Hi Alexandre,
I'm using Delphi 11.3, patch 1 with IW 15.3.3.
When creating my form, I have an empty Accordion and dynamically create Sections with:
...
s := TIWJQSection.Create(AccordionRemarks);
s.Name := 'Section_' + IntToStr(i);
s.Caption := 'Section_' + IntToStr(i);
s.SectionIndex := i;
AccordionRemarks.AddSection(s);
Inc(i, 1);
...
When publishing the form, I get an AV.
I'm using Delphi 11.3, patch 1 with IW 15.3.3.
When creating my form, I have an empty Accordion and dynamically create Sections with:
...
s := TIWJQSection.Create(AccordionRemarks);
s.Name := 'Section_' + IntToStr(i);
s.Caption := 'Section_' + IntToStr(i);
s.SectionIndex := i;
AccordionRemarks.AddSection(s);
Inc(i, 1);
...
When publishing the form, I get an AV.

