No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
Project Manager Gas Industry
- PC Specs
- Linux OS Kubuntu distro
12 Posted Topics
Re: great advice that of starting a project to practice, experiment and refine what you have(are) studied! I was in your same situation and, after reading a bunch of books and doing several tutorials, I thought "how can I use what I've learnt? How can I learn more in a more … | |
Re: I know that this thread is quite old now but in my understanding [I]The Open Source Editions of Qt is freely available for the development of Open Source software governed by the GNU General Public License (GPL)[/I] Thus if you write a PyQt app and you release the code under … | |
Hello everybody, I’m experimenting with PyQt, trying to learn it, and I’m a bit stuck with Signals and Slots. I don’t usually like just to repeat the examples you find in tutorials and guides because I think it’s more useful for learning to experiment concepts by yourself. Tutorials usually teach … | |
Hello everybody, after diving into Tkinter for a while I'm now willing to learn PyQt. Before spending a lot of time with it I tried to process a very simple script (displaying a plain window) with Pyinstaller. This because I absolutely need to share my app with different people which … | |
Hi everyone, I'm feeling a little dizzy trying to place the root window of my Tkinter app on the screen. I followed [URL="http://www.daniweb.com/forums/thread66037.html"]mawe[/URL] advice and coded like this: [code=python] root = Tk() root.config(bg="white") w, h = root.winfo_screenwidth(), root.winfo_screenheight() root.geometry("%dx%d+0+0" % (w, h)) [/code] However the window gets placed wrongly and … | |
Hello everybody, I've a somewhat odd issue displaying a .png image onto a Tkinter canvas. The image is surrounded by a grey frame. Here below an excerpt of the relevant code and by the way I'm running under windows xp. The same thing happens with the menu of the gui, … | |
Re: I use PIL (Python Imaging Library) module which is more flexible with graphics usage in python and let you use formats different from say gif. So I advise you first to install PIL from here [URL="http://www.pythonware.com/products/pil/"]http://www.pythonware.com/products/pil/[/URL] Then a very simple example which focus only on the load image and canvas … | |
Re: you need to create a GUI for your program. Most common choices for this are: 1- [URL="http://wiki.python.org/moin/TkInter"]Tkinter[/URL] (already included in pyton and -from my point of view- the simplest but also worst looking) 2- [URL="http://wxpython.org/"]wxPython[/URL] 3- [URL="http://www.riverbankcomputing.co.uk/software/pyqt/intro"]PyQt[/URL] 4- [URL="http://www.pygtk.org/"]PyGTK[/URL] [URL="http://pythonpapers.org/"]Here[/URL] you can download an issue of The Python Papers and … | |
Re: hi, I think that the float indicates the type of value. If I'm correct 0 is int and 1 is text Anyway instead of that try this: row_values(rowx, start_colx=0, end_colx=None) col_values(colx, start_rowx=0, end_rowx=None) each of them returns a sequence of values found in the cells belonging to a row/column. the … | |
Hi everyone, I have a problem to insert text into a text widget in Tkinter. I want to be able that each time some text is inserted (by means of an action -not directly by the user-) that text is displayed into a new line. However I can't figure out … | |
Hi everyone. I'm using ReportLab to generate pdf report from my price list application. The application runs on windows xp o.s. and is made with tkinter. What the app make now is that when I press the printPdf button a pdf file with a preset name is created in the … | |
Hi everyone, I'm new in this forum. By the way it's not longtime since I started learning python. After a couple o months of studying and tutorialing I'm now nearly finished with my first application. I've used Tkinter as GUI and there's one thing that's making me nervous: I want … |
The End.