- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
I'm a philosophy lover that likes rock 'n' roll, is a nerd and a cinephile.
9 Posted Topics
Hey ya guys, it's my first topic on DaniWeb, sounds like a good place to find help with programming. :) Today I'm trying to compile a simple code made for PyQt4 using cx_Freeze, but I'm getting an error, I'll show you all the codes: [B]example.pyw[/B] [CODE]import sys from PyQt4 import … | |
Re: @idiotguy To start learning, Python 2 is way better and it has lots of modules that aren't yet ported to Python 3, and no way I'll write you a list of GUI Toolkits. You should use PyQt, by the way. P.S. I use Python 3, and I love it, for … | |
Re: @Ismatus3 [CODE]from cx_Freeze import setup, Executable exe = Executable( script="Hello.py", ) setup( executables = [exe] ) [/CODE] What about | |
I'm trying to compile the following pygame code: [CODE]import sys, pygame pygame.init() size = width, height = 320, 240 speed = [2, 2] black = 0, 0, 0 screen = pygame.display.set_mode(size) ball = pygame.image.load("ball.gif") ballrect = ball.get_rect() while 1: for event in pygame.event.get(): if event.type == pygame.QUIT: sys.exit() ballrect = … | |
Re: You should use cx_Freeze, it works actually pretty well with 2.7 and 3.2 and it's easy to configure. | |
| |
Re: @adobe71 There's a lot of freezing scripts to use, but the one which works with Python 3 at the moment is cx_Freeze, It creates some files beyond the exe, though. You can check bbfreeze, PyInstaller, py2app (on Mac) and some others I just can't remember right now. But I do … | |
Hello friends, I'm developing a small application with PyQt4. [img]http://i41.tinypic.com/2vl1f2t.png[/img] I want to add two spacer between Print and the other icons, just like they did on Notepad, do anyone know how to do it? [img]http://i39.tinypic.com/r87cro.png[/img] | |
Hey mates, it's me again. I'm trying to develop a small application, but I'm not sure how to put two icons in the same toolbar, probably theres another way of creating toolbars instead of "self.toolbar", I'm not sure. Check my code: [CODE]import sys from PyQt4 import QtGui class Routine(QtGui.QMainWindow): def … |
The End.