Reputation: 29445
Does python have any library to let user enter input values in cells in application GUI?
I mean, I will copy 10 values from an excel sheet (A1:A10) end paste it into cells in python GUI, and application will accept those 10 values.
Upvotes: 1
Views: 5317
Reputation: 54340
Yeah. Copy and paste, select and set color, adjust col and row width/height. You name it, you get it. Haven't done it in many years and can't remember all the tricks. But it is quite easy to do in Boa Constructor, http://boa-constructor.sourceforge.net/. Also see this very helpful blog: http://www.blog.pythonlibrary.org/2010/03/18/wxpython-an-introduction-to-grids/. A real example that I wrote a few years back: http://sourceforge.net/projects/deday/
Upvotes: 3