steve64 I would need a way to create an Edit widget that is read-only but keeps the capability for users of copying the contents to the clipboard.
Samir It's not possible. Maybe using the onChange() event but it will create an endless loop if you modify the Entry.text inside this event
esferatec The only way I can think of is to use the sys.clipboard = edit.text. This would put the hole text into the clipboard.
Samir Yes maybe adding a Button next to the entry that permit the user to copy text to the clipboard is a good altenative
steve64 Yes, thanks, I also had that button idea. By the way, is it a limitation of the WIN32 EDIT object ?