You are not logged in.
Pages: 1
Hi, I get a AV in Procedure ExtractAllResources()
CaptionNames param Action is always empty ('') and TrimLeftLowerCase(Action^) crashes!?
// for Delphi 2009 and up, CaptionName(): string will be converted into a WinAnsiString
with InternalClassProp(Tables[index])^ do begin
P := @PropList;
for j := 1 to PropCount do begin // add all field names
AddOnceDynArray(StringToWinAnsi(CaptionName(@P^.Name))); // <<== here AV
P := P^.Next;
end;
end;
Can you help?
Offline
You are right.
I've just fixed an unexpected AV error in Procedure ExtractAllResources().
See http://synopse.info/fossil/info/fd0faee5dc
Thanks for the feedback.
Offline
Pages: 1