Hi folks,
I am using FolderView.OnGetTextEx to provide custom bottom text for the images.
The first thing i noticed is that setting font.color has no effect.
vFileText := '';
if Position = iemtpBottom then begin
with FcdsAttachments do
if locate('user_file_name', Text, []) then begin
if FieldByName('tracer_nbr').asString > '' then begin
vFileText := 'Order Nbr ' + FieldByName('tracer_nbr').asString;
Font.Color := clBlue //does not work
end else begin
vFileText := 'No order found';
Font.Color := clRed
end
end;
Text := vFileText
end
Then i need to grab the bottom text of selected image for taking some UI actions. I am using ImageSelect event, and then trying to read the following property but it is always empty.
FolderView.ImageBottomText[AIdx]
Any ideas? My environment is D2007 and ImageEn 8.7.6.
Thanks alot,
Eugene.