window resize in PyGTK
1. I have PyGTK 0.6 (Old GTK+ 1.2 stuff) 2. Created a main window with a Paned widget inside it. 3. I want it to resize the pane size along with resizing the main window. i couldnt get which event/signal to be trapped and how to get the length and width of window after resizing ... pl need some help and main problem is that THE DOCUMENT is not available for that version of PyGTK as there is for current one .. - Somesh -- http://mail.python.org/mailman/listinfo/python-list
The pythonic way
Hi, I have started reWriting the stuffs under header 'The Pythonic way !', the small code segments are kept at http://guruvision.in/ , pl let me know more topics ideas to write, work. is there anyone who has worked with python in geometry/maths domain ? - somesh -- http://mail.python.org/mailman/listinfo/python-list
listing users in Plone
Hi, 1.I have installed and running a plone Intranet site, I have registerd users on it. I want to get list of all registerd users on a page. how I should move towards getting it / scripting it in my index_html page ? I am just a frontend user of plone. 2.How to start creating small database driven pages programming on plone ? need too newbie tute :), PS : I have good hand on Python - Somesh -- http://mail.python.org/mailman/listinfo/python-list
Re: listing users in Plone
plz let me know the proper google group -- http://mail.python.org/mailman/listinfo/python-list
Python glade tute
hello, I wrote a small tute for my brother to teach him python + glade, plz see, and suggest to make it more professional , In tute I discussed on Glade + Python for developing Applications too rapidly as ppls used to work on win32 platform with VB. http://www40.brinkster.com/s4somesh/glade/index.html somesh -- http://mail.python.org/mailman/listinfo/python-list
Re: How to write in to already opened excel file by using openpyxl
Hi..joel what is said is correct i dint added save to that after adding its working perfect thanks -- https://mail.python.org/mailman/listinfo/python-list
Re: How to write in to already opened excel file by using openpyxl
hi..Neil yes i dint saved that time and i added the save option and it saved Thanks for the response -- https://mail.python.org/mailman/listinfo/python-list
unable to read combo boxes in excel by xlrd package in python
Hi..there I want to read the combo box in excel by using "xlrd" but in the output it is showing empty message, its not reading the combo box can u guys help me how to read the combo box in excel by "xlrd" code written like this workbook = xlrd.open_workbook('path of the file') worksheet = workbook.sheet_by_name('sheetname') TargetSystem = worksheet.cell_value(4, 2) -- https://mail.python.org/mailman/listinfo/python-list
How to read a particular cell by using "wb = load_workbook('path', True)" in openpyxl
Hi..there I have written code for reading the large excel files but my requirement is to read a particular cell in a excel file when i kept "True" in "wb = load_workbook('Path', True)" any body please help me... CODE: from openpyxl import load_workbook wb = load_workbook('Path', True) sheet_ranges = wb.get_sheet_by_name(name = 'Global') for row in sheet_ranges.iter_rows(): for cell in row: print cell.internal_value Regards, G.Someswara Rao -- https://mail.python.org/mailman/listinfo/python-list