Ability to SELECT text in IWCGMessageDlg

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
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