Page 1 of 1

Ability to SELECT text in IWCGMessageDlg

PostPosted: 17 Feb 2017 19:39
by mrcarver
CG Gurus,

I am using the IWCGMessageDlg extensively to handle posting exceptions:
except
on E:Exception do
begin
lDlg := IWCGMessageDlg(E.Message, mtError, [mbOK], nil);
lDlg.Width := 350;
lDlg.Height := 200;
end;

The rendered text is not selectable, which is very tedious considering I am using GUIDS as primary keys. How can I make the IWCGMessageDlg selectable so I can easily COPY text for the purposes of debugging the raised exception.

Regards,
Monte Carver

Re: Ability to SELECT text in IWCGMessageDlg

PostPosted: 20 Feb 2017 19:19
by Alexander Bulei
Hi mrcarver,

Its because of z-Index of label...and we have fixed for next beta build....

You can workarround until the build:

delphi code
lDlg.Label_.StyleRenderOptions.RenderZIndex:= False;


Thank you.

Best Regards.