Jump to content

showmessage copy


jahlxx

Recommended Posts

DelphiDeveloper -  I think what Jahlxx is trying to say is:

 

In Delphi, if you get an error message (from showmessage, etc.) you can click CTRL-C  and the message is copied to

the clipboard. This doesn't work with UniGui messages.  

 

-----------------------------

One solution I just thought of.

procedure MyShowMessage(aText: String);
begin
    Clipboard.AsText := aText;
    ShowMessage(aText);
end;

I just typed this code in.  I didn't test it.  It is just an idea.

Link to comment
Share on other sites

  • 5 months later...

Hi,

 

Once again, please explain your question in more details

 

We will try to help you with it

 

Best regards,

Hi.

 

I still can't do this.

 

Works in unigui demos, but not in my apps.

 

Sometyhing must be wrong, and I don't know what and / or where.

 

I really need this, and don't know how to solve it.

 

What could be causing this?

 

I'm really lost.

 

Thanks in advance.

Link to comment
Share on other sites

Ok.

 

Found !!

 

I use this:

 

http://forums.unigui.com/index.php?/topic/1244-signature-capture/?hl=signature-pad&do=findComment&comment=42102

 

And in signature-pad.css are these 3 lines:

 

  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;

 

 

I've commented that lines, and now everything woks fine. Can select cell in a grid, in edit mode or not, and text in showmessages.

 

Many many many ... thanks, friend.

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...