Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~4K People Reached
About Me

I'm a philosophy lover that likes rock 'n' roll, is a nerd and a cinephile.

Favorite Forums
Favorite Tags

9 Posted Topics

Member Avatar for telmo96

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 …

Member Avatar for sneekula
0
3K
Member Avatar for idiotguy

@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 …

Member Avatar for Tcll
0
714
Member Avatar for Ismatus3

@Ismatus3 [CODE]from cx_Freeze import setup, Executable exe = Executable( script="Hello.py", ) setup( executables = [exe] ) [/CODE] What about

Member Avatar for telmo96
0
246
Member Avatar for telmo96

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 = …

0
53
Member Avatar for Ismatus3

You should use cx_Freeze, it works actually pretty well with 2.7 and 3.2 and it's easy to configure.

Member Avatar for telmo96
0
126
Member Avatar for khajvah
Member Avatar for adobe71

@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 …

Member Avatar for snippsat
0
190
Member Avatar for telmo96

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]

0
65
Member Avatar for telmo96

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 …

0
90

The End.