Support,
Is it possible to copy text (into the paste buffer) from a readonly wx.grid cell?
If yes, how do I accomplish this.
Thanks,
Bruce
Support,
Is it possible to copy text (into the paste buffer) from a readonly wx.grid cell?
If yes, how do I accomplish this.
Thanks,
Bruce
I would use toolbar buttons, the normal menu or a context menu. Then you can grab the focused cell programmatically and pull the info you need from it.
On Tuesday, December 11, 2012 7:46:50 PM UTC-6, bruce g wrote:
Support,
Is it possible to copy text (into the paste buffer) from a readonly wx.grid cell?
If yes, how do I accomplish this.Thanks,
Bruce
Yes, I’ve done it with a context menu then written to the clipboard. The wxClipboard docs have a nice example.
Jill
On Wednesday, December 12, 2012 3:47:26 PM UTC, Mike Driscoll wrote:
On Tuesday, December 11, 2012 7:46:50 PM UTC-6, bruce g wrote:
Support,
Is it possible to copy text (into the paste buffer) from a readonly wx.grid cell?
If yes, how do I accomplish this.Thanks,
BruceI would use toolbar buttons, the normal menu or a context menu. Then you can grab the focused cell programmatically and pull the info you need from it.
- Mike