Europython 2011 - Call for Papers

2011-02-21 Thread Fabio Pliger
Europython is coming back around! Europython will be held in Florence, Italy from the 20th to the 25th of june. EuroPython is a conference for the Python programming language community. It is aimed at everyone in the Python community, of all skill levels, both users and programmers. It's one of t

wxpython wxlistctrl with combo

2005-06-13 Thread Fabio Pliger
Hi all, i'm working on a very large project using wx 2.5... On one frame i have a wx.lib.mixins.listctrl widget, wich is a listctrl extended with the possibility to edit the columns text entrys Anyone know if it's possible (or if there's a widget...) to have also the possbility to have a comboB

wx ListCtrl with combobox...

2005-06-11 Thread Fabio Pliger
Hi all, i'm working on a very large project using wx 2.5... On one frame i have a wx.lib.mixins.listctrl widget, wich is a listctrl extended with the possibility to edit the columns text entrys Anyone know if it's possible (or if there's a widget...) to have also the possbility to have a comboB

Re: Libraries for creating graphs

2005-05-02 Thread Fabio Pliger
"Florian Lindner" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > Hello, > I'm looking for libraries to create graphs. I'm not talking about plotting a > function like f(x)=x^2 just plotting a couple of values into a short, maybe > interpolating them. Output should be somethi

Re: How close program in the wxPython?

2005-05-02 Thread Fabio Pliger
"Tian" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > I have made a program in wxpython, but how could i exit the program? I > am using wxFrame for my window, what is the function to close the > program? > > Thanks!! > Wich version of wx? You cannot exit the program clickin

Re: date to digit

2005-04-30 Thread Fabio Pliger
"Sara Khalatbari" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > Is there a program in python that inputs a date & a > time, for example: "2005-04-17 04:20+". And > returns a digit, for example: "3501" instead? > > and if there is such program or built-in function, how

Re: [wxPython] Many wxPanel forms in 1 wxFrame

2005-04-30 Thread Fabio Pliger
"CYBER" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > Is this possible to create 1 wxFrame and > register more than 1 wxPanel in it. > And select the one you want to show at the moment ? > > I'm trying to implement a multistep wizard under wxPython. > I need to be able to h

Re: Best way to create temporary file?

2005-04-29 Thread Fabio Pliger
"Frank Millman" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > Hi all > > I need to generate potentially large reports from a database, and I > want to offer the option of print preview before actually printing > (using wxPython). I figure that the best way to achieve this i

Re: printing with wxPython

2005-04-13 Thread Fabio Pliger
[EMAIL PROTECTED] > Fabio Pliger wrote: > > Hi! > > I'm using wxPython to handle my application gui.. So, I have a notebook > > widget and i have to print the object inside it's tab ... Maybe doing a > > preview before printing... I know that wx has many objects to

chaco and wx 2.5....

2005-04-12 Thread Fabio Pliger
anyone know if it's possibile to run chaco with wx 2.5.3 or grater? -- http://mail.python.org/mailman/listinfo/python-list

printing with wxPython

2005-04-12 Thread Fabio Pliger
Hi! I'm using wxPython to handle my application gui.. So, I have a notebook widget and i have to print the object inside it's tab ... Maybe doing a preview before printing... I know that wx has many objects to handle printing.. i've tryied to use them, but i wasn't able to... Any hint? By now, i s

Re: check instace already running...

2005-04-10 Thread Fabio Pliger
"Aldric L'Hernault" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > Sidharth Kuruvila a écrit : > > I haven't tested this. There is probably a better way of doing this > > looking at process information. I use a lock file to mark that the > > program is already running. The pr

Re: change the date string into timestamp

2005-04-09 Thread Fabio Pliger
You can use some date/time modules as: time built in module datetime wxDatetime from wx just take a look in the documentation... they are very simple to use. F.P. "praba kar" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > Dear All, > > In Php strtotime() will change a

check instace already running...

2005-04-09 Thread Fabio Pliger
Hi, is it possibile, in python, to check for an already running instance of an application? My problem is that, if my program i running and the user relaunch it, i don't want to open a new instance and have to instances of the same program running togheter... Can someone help me on this? Fabio P.