Alternative to PIL in Python 3.1

2010-12-14 Thread craf
Hi. I wonder if anyone knows any alternative to PIL library, as this does not work with Python 3.1. Thanks in advance Regards. Cristian -- http://mail.python.org/mailman/listinfo/python-list

[Fwd: Re: Alternative to PIL in Python 3.1]

2010-12-14 Thread craf
- Mensaje reenviado De: Emile van Sebille em...@fenx.com Para: python-list@python.org Asunto: Re: Alternative to PIL in Python 3.1 Fecha: Tue, 14 Dec 2010 16:39:19 -0800 On 12/14/2010 3:17 PM craf said... Hi. I wonder if anyone knows any alternative to PIL library

[Tkinter-discuss] Border color ttk.Entry

2010-12-13 Thread craf
Hi. There any way to change the border color of a control ttk.Entry through options or style? Regards. Cristian Ubuntu 9.10 - Tkinter 8.5 ___ Tkinter-discuss mailing list Tkinter-discuss@python.org

[Tkinter-discuss] Ttk.Labelframe control label does not change color

2010-12-12 Thread craf
Hi. Changing the background color ttk.Labelframe control, label does not change color. CODE: from tkinter import * from tkinter import ttk master = Tk() master.geometry('200x200') s = ttk.Style() s.configure('TLabelframe', background='blue') labelframe = ttk.Labelframe(master, text='Options',

[Tkinter-discuss] [Fwd: Re: Ttk.Labelframe control label does not change color]

2010-12-12 Thread craf
- Mensaje reenviado De: pyt...@bdurham.com Para: craf p...@vtr.net, Python Tkinter Ingles tkinter-discuss@python.org Asunto: Re: [Tkinter-discuss] Ttk.Labelframe control label does not change color Fecha: Sun, 12 Dec 2010 19:46:13 -0500 Craf, Changing the background

[Tkinter-discuss] [Fwd: Re: methods of control PanedWindow]

2010-12-09 Thread craf
- Mensaje reenviado De: Michael Lange klappn...@web.de Para: tkinter-discuss@python.org Asunto: Re: [Tkinter-discuss] methods of control PanedWindow Fecha: Thu, 9 Dec 2010 20:38:41 +0100 Thus spoketh craf p...@vtr.net unto us on Thu, 09 Dec 2010 15:52:43 -0300: I Do

[Fwd: Re: Using a window style in a Toplevel window]

2010-12-09 Thread craf
-l...@python.org, craf p...@vtr.net wrote: Hi. I use Python 3.1 and Tkinter.ttk 8.5 on Ubuntu 9.10. CODE: module:FMain.py from tkinter import ttk from FSecondWindow import * class App: def __init__(self,master

[Tkinter-discuss] Change font and size in control ttk.Entry

2010-12-07 Thread craf
Hi. I'm trying to change the font type and size of a ttk.Entry control. Example: from tkinter import * from tkinter import ttk master=Tk() s = ttk.Style() s.theme_use('clam') s.configure('TEntry', font='Monaco') entrada = ttk.Entry(master, style='TEntry') entrada.pack() master.mainloop()

[Tkinter-discuss] Create Grips for modificated size controls

2010-12-06 Thread craf
Hi. Is it possible to create pinch points(grips) to resize a control, as is done in visual basic.? Example. x---xx || || x Button x Grip || |

[Python-es] Formas de llamar a una ventana Toplevel desde una ventana principal.

2010-12-03 Thread craf
Hola. Tengo el siguiente codigo: modulo1:FMain.py from Tkinter import * from FSecondWindow import * class App: def __init__(self,master): button1 = Button(master,text='Muestra TopLevel',command=lambda:window()) button1.pack() master = Tk() app = App(master)

[Tkinter-discuss] Using a window style in a Toplevel window

2010-12-03 Thread craf
Hi. I use Python 3.1 and Tkinter.ttk 8.5 on Ubuntu 9.10. CODE: module:FMain.py from tkinter import ttk from FSecondWindow import * class App: def __init__(self,master): button1 = ttk.Button(master,text='Show

[Tkinter-discuss] [Fwd: Re: Using a window style in a Toplevel window]

2010-12-03 Thread craf
- Mensaje reenviado De: Michael Lange klappn...@web.de Para: tkinter-discuss@python.org Asunto: Re: [Tkinter-discuss] Using a window style in a Toplevel window Fecha: Fri, 3 Dec 2010 18:21:24 +0100 Hi, Thus spoketh craf p...@vtr.net unto us on Fri, 03 Dec 2010 14:04

Using a window style in a Toplevel window

2010-12-03 Thread craf
Hi. I use Python 3.1 and Tkinter.ttk 8.5 on Ubuntu 9.10. CODE: module:FMain.py from tkinter import ttk from FSecondWindow import * class App: def __init__(self,master): button1 = ttk.Button(master,text='Show

[Fwd: Re: Decorate un Frame with window managers title bar, etc en Tkinter 8.5]

2010-12-02 Thread craf
mailman.101.1291218554.2649.python-l...@python.org, craf p...@vtr.net wrote: Hi. I use python 3.1 and Tkinter 8.5 in Ubuntu 9.10 I would like to turn a frame into a toolbox, ,and for that I read that you can use the command wm manage (window) The information can be found

Uso de variable Global

2010-12-02 Thread craf
Hola. Estoy probando Tkinter y escribí este pequeño código el cual crea un formulario con un textbox y un botón. Al ingresar un dato en el textbox y presionar el botón, se imprime en la consola el valor. ---CODE from Tkinter import * def muestra():

[Fwd: Re: Uso de variable Global]

2010-12-02 Thread craf
- Mensaje reenviado De: Peter Otten __pete...@web.de Para: python-list@python.org Asunto: Re: Uso de variable Global Fecha: Thu, 02 Dec 2010 23:06:25 +0100 Grupos de noticias: comp.lang.python craf wrote: Hola. Estoy probando Tkinter y escribí este pequeño

[Tkinter-discuss] Decorate un Frame with window managers title bar, etc en Tkinter 8.5

2010-12-01 Thread craf
Hi. I use python 3.1 and Tkinter 8.5 in Ubuntu 9.10 I would like to turn a frame into a toolbox, ,and for that I read that you can use the command wm manage (window) The information can be found at: http://www.tcl.tk/man/tcl8.5/TkCmd/wm.htm#M39 the explanation says: wm manage widget:

Decorate un Frame with window managers title bar, etc en Tkinter 8.5

2010-12-01 Thread craf
Hi. I use python 3.1 and Tkinter 8.5 in Ubuntu 9.10 I would like to turn a frame into a toolbox, ,and for that I read that you can use the command wm manage (window) The information can be found at: http://www.tcl.tk/man/tcl8.5/TkCmd/wm.htm#M39 the explanation says: wm manage widget:

[Python-es] Trabajar con imagenes en tkinter.ttk

2010-11-25 Thread craf
JPG?. Desde ya muchas gracias. Saludos. CRAF ___ Python-es mailing list Python-es@python.org http://mail.python.org/mailman/listinfo/python-es FAQ: http://python-es-faq.wikidot.com/

[pygtk] [Fwd: Understanding Pango+Cairo]

2010-11-23 Thread craf
Have you read this tutorial? http://zetcode.com/tutorials/pygtktutorial/ Regards Cristian Abarzúa F De: Fabrice Delente delen...@gmail.com Para: pygtk@daa.com.au Asunto: [pygtk] Understanding Pango+Cairo Fecha: Tue, 23 Nov 2010 17:37:25 +0100 Hello. I've been reading the doc to use

[pygtk] [Fwd: I want to make a example app with two thread and events]

2010-11-15 Thread craf
() Bye and thanks. Hola. Prueba con el evento focus. Ej. #I want to #self.window.connect(focus, self.custom_event) Saludos. CRAF ___ pygtk mailing list pygtk@daa.com.au http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ

Re: [Gambas-user] Testing Gambas 2.99

2010-09-17 Thread craf
-Mensaje original- De: craf p...@vtr.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Testing Gambas 2.99 Fecha: Fri, 17 Sep 2010 00:15:37 -0400 -Mensaje

[Gambas-user] Test Gambas 2.99 Rev 3227

2010-09-17 Thread craf
OS: Ubuntu 10.4 Gnome : 2.30.2 Fmain.border = 0 --Work, show form without borders Fmain.border = 1 -- Nothing Fmain.border = 2 -- Nothing Regards. Cristian Abarzua F -- Start uncovering the many advantages of

Re: [Gambas-user] Test Gambas 2.99 Rev 3227

2010-09-17 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Test Gambas 2.99 Rev 3227 Fecha: Sat, 18 Sep 2010

Re: [Gambas-user] Problems installing Gambas3. Rev 3223 [SOLVED]

2010-09-16 Thread craf
Solved with Rev 3226. Regards. Cristian Abarzua F -Mensaje original- De: craf p...@vtr.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: Lista Gambas Ingles gambas-user@lists.sourceforge.net Asunto: [Gambas-user] Problems installing Gambas3. Rev 3223

Re: [Gambas-user] Testing Gambas 2.99

2010-09-16 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Testing Gambas 2.99 Fecha: Fri, 17 Sep 2010 02:12:27

Re: [Gambas-user] Testing DEVELOPMENT ENVIRONMENT in Gambas3

2010-09-16 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Testing DEVELOPMENT ENVIRONMENT in Gambas3 Fecha:

Re: [Gambas-user] Rev. 3199 - Gambas 3

2010-09-15 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Rev. 3199 - Gambas 3 Fecha: Mon, 13 Sep 2010

Re: [Gambas-user] Rev. 3199 - Gambas 3

2010-09-15 Thread craf
interface. like many programs on linux. to help you to understand how to make a console program take a look at the sources of gbs3 2010/9/15 craf p...@vtr.net: -Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user

Re: [Gambas-user] Gambas compile with option -static

2010-09-15 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Gambas compile with option -static Fecha: Wed, 15

Re: [Gambas-user] Gambas compile with option -static

2010-09-15 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Gambas compile with option -static Fecha: Thu, 16

[Gambas-user] Testing Gambas 2.99

2010-09-15 Thread craf
Ubuntu : 10.4 Gambas : 2.99 Gnome : 2.30.2 [gb.form] * test ColorButton : When selecting a color, the button does not display the selected color. [gb.qt4] * Test Form : Fmain.center not positioned in the center of the screen, the form Regards Cristian Abarzua

Re: [Gambas-user] Testing Gambas 2.99

2010-09-15 Thread craf
this is a Gambas-error mainly. Regards, Dag-Jarle Am Mittwoch, den 15.09.2010, 23:02 -0400 schrieb craf: Ubuntu : 10.4 Gambas : 2.99 Gnome : 2.30.2 [gb.form] * test ColorButton : When selecting a color, the button does not display the selected color. [gb.qt4] * Test Form

[Gambas-user] Problems installing Gambas3. Rev 3223

2010-09-15 Thread craf
Hi. Do not know what happened, because I can not compile the 3223 version. . / Configure shows: WARNING: Unable to find file: libintl.so WARNING: Unable to find file: libiconv.so Attached file output.txt Regards Cristian Abarzua F. output.txt.tar.gz Description:

Re: [Gambas-user] Testing component GB.INFO

2010-09-12 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Testing component GB.INFO Fecha: Sun, 12 Sep 2010

[Gambas-user] Testing component GB.INFO

2010-09-11 Thread craf
[GB.INFO] Testing in Gambas3 Rev 3206 and Gambas 2.21. SO: Ubuntu 9.10 i386 * Create proyect GTK. * Add Control Listview * Add three controls Button. * Add Class Class1 * Add two forms. * Code in Button1: Dim x As Byte For x = 0 To Info.Classes.Count - 1 ListView1.Add(x,

[Gambas-user] Testing DEVELOPMENT ENVIRONMENT in Gambas3

2010-09-11 Thread craf
[ DEVELOPMENT ENVIRONMENT] Testing in Gambas3 Rev 3206 SO: Ubuntu 9.10 i386 * When you save a project with the name of another existing project. Not indicated by a message that the project already exists as gambas2. Regards. Cristian Abarzua F

Re: [Gambas-user] Rev. 3199 - Gambas 3

2010-09-09 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Rev. 3199 - Gambas 3 Fecha: Thu, 9 Sep 2010 03:26:50

Re: [Gambas-user] Rev. 3199 - Gambas 3

2010-09-09 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Rev. 3199 - Gambas 3 Fecha: Thu, 9 Sep 2010 17:34:03

Re: [Gambas-user] Rev. 3199 - Gambas 3

2010-09-09 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Rev. 3199 - Gambas 3 Fecha: Fri, 10 Sep 2010

[Gambas-user] TabStrip Control

2010-09-08 Thread craf
I'm trying Gambas3 and would like to make a query: In GTK+, the control GTK_NOTEBOOK, displays the text of the tabs horizontally, the orientation set to the left or right. (See image adjunt). It is thus possible to configure Gambas3? Regards. Cristian Abarzúa F attachment:

[Gambas-user] Rev. 3199 - Gambas 3

2010-09-08 Thread craf
OS: Ubuntu 9.10 - 32bits Gnome : 2.28 Monitor : res. 1360x768 [GB.FORM] *BUG: The icons in the Console tab, not shown completely. See.Image.png Regards. Cristian Abarzúa F. attachment: image.png-- This

[Gambas-user] Gambas compile with option -static

2010-09-08 Thread craf
Hi. There is the possibility to compile the executable gbx2 with option -static. Regards. Cristian Abarzúa F -- This SF.net Dev2Dev email is sponsored by: Show off your parallel programming skills. Enter the Intel(R)

Re: [Gambas-user] data book archive .dba from gambas y palms

2010-09-08 Thread craf
-Mensaje original- De: Tomas Rodriguez admhards...@yahoo.ca Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: gambas-user@lists.sourceforge.net Asunto: [Gambas-user] data book archive .dba from gambas y palms Fecha: Wed, 8 Sep 2010 17:38:26 -0400 Hi eeryone I

Re: [Gambas-user] TabStrip Control

2010-09-08 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] TabStrip Control Fecha: Thu, 9 Sep 2010 03:04:28

Re: [Gambas-user] Bugs - Gambas3

2010-09-07 Thread craf
you an icon named : media-playback-start (.png or .svg) ? Yes, is in /usr/share/icons/Humanity/actions/16/, Size 22 is not. Attached image. Regards. in /usr/share/icons/Human(or Humanity)/22/ 2010/9/7 craf p...@vtr.net: -Mensaje original- De: Benoît Minisini gam

[Gambas-user] Bugs - Gambas3

2010-09-06 Thread craf
Gambas 3: Revisión : 3182 OS : Ubuntu 9.10 Desktop : Gnome 2.28 [IDE] *Execute button does not appear well defined. PICTURE:Execute_button.png [GB.FORM] *Inputbox control overflows when entering a string too long in parameter Prompt as String. PICTURE: inputbox.png *Balloon Control is

Re: [Gambas-user] Using Open in Gambas 3

2010-09-06 Thread craf
OK, thank you. Cristian Abarzua F. -Mensaje original- De: Fabien Bodard gambas...@gmail.com Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Using Open in Gambas 3

Re: [Gambas-user] Bugs - Gambas3

2010-09-06 Thread craf
with the standart theme.. 2010/9/6 craf p...@vtr.net: Gambas 3: Revisión : 3182 OS : Ubuntu 9.10 Desktop : Gnome 2.28 [IDE] *Execute button does not appear well defined. PICTURE:Execute_button.png [GB.FORM] *Inputbox control overflows when entering a string too long in parameter Prompt

Re: [Gambas-user] Bugs - Gambas3

2010-09-06 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Bugs - Gambas3 Fecha: Mon, 6 Sep 2010 19:45:14 +0200

Re: [Gambas-user] Bugs - Gambas3

2010-09-06 Thread craf
-Mensaje original- De: Fabien Bodard gambas...@gmail.com Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Bugs - Gambas3 Fecha: Mon, 6 Sep 2010 20:24:36 +0200 well, try

[Gambas-user] Revision Number of Repo Subversion Gambas 3

2010-09-06 Thread craf
Hi. Is there any way to determine the revision number that takes the subversion repository in Gambas 3.? I want to make a small script to see daily changes and download the latest revision date. Regards Cristian Abarzua F.

Re: [Gambas-user] Bugs - Gambas3

2010-09-06 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Bugs - Gambas3 Fecha: Mon, 6 Sep 2010 22:14:36 +0200

Re: [Gambas-user] Revision Number of Repo Subversion Gambas 3

2010-09-06 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Revision Number of Repo Subversion Gambas 3 Fecha:

[Gambas-user] Using Open in Gambas 3

2010-09-05 Thread craf
I use the following code to read from a text file in Gambas 2: Dim hFile As File Dim line As String Open text For Read As #hFile While Not Eof(hFile) Line Input #hfile, line Print line Wend close #hFile In

[Gambas-user] Devel List

2010-08-30 Thread craf
Hi. The Devel list is working? Regards. -- This SF.net Dev2Dev email is sponsored by: Show off your parallel programming skills. Enter the Intel(R) Threading Challenge 2010. http://p.sf.net/sfu/intel-thread-sfd

[Gambas-user] Email.

2010-08-30 Thread craf
Hi Benoit You have a particular email address to send a code? Regards. Cristian Abarzúa -- This SF.net Dev2Dev email is sponsored by: Show off your parallel programming skills. Enter the Intel(R) Threading Challenge

Re: [Gambas-user] Pretty printer

2010-08-16 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: gambas-user@lists.sourceforge.net Asunto: [Gambas-user] Pretty printer Fecha: Mon, 16 Aug 2010 16:38:12 +0200 Hi, Just before leaving Paris

[Gambas-user] Error in example MoviePlayer in Gambas 3

2010-08-14 Thread craf
Hi. When I try to run the sample MoviePlayer, gives me this error: Wid = 4400040 (MoviePlayer:5144): Gtk-CRITICAL **: gtk_widget_set_events: assertion `! GTK_WIDGET_REALIZED (widget)' failed This error occurs by GNOME canvas control? Regards

Re: [Gambas-user] Access only to the user's folder

2010-08-04 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Access only to the user's folder Fecha: Wed, 4 Aug

Re: [Gambas-user] Access only to the user's folder

2010-08-04 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Access only to the user's folder Fecha: Wed, 4 Aug

[Gambas-user] Access only to the user's folder

2010-08-02 Thread craf
Hi. I want the user to select the Dialog.SelectDirectory () only could choose or create folders within the folder /home. It can be done with Dialog.Path = User.home, but this does not stop so you can select the root directory / Regards

Re: [Gambas-user] Access only to the user's folder

2010-08-02 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Access only to the user's folder Fecha: Tue, 3 Aug

[Gambas-user] Problem with ComboBox

2010-08-01 Thread craf
Hi. 1.Objective-: *Select an item from a ComboBox control and execute an action on your Change event 2.Actions---: *Load the ComboBox with the elements 1 and 2 *Create a message in the Change event of the ComboBox: PRIVATE ComboBox1_Change() Message(There was a change in the text) END

Re: [Gambas-user] Problem with ComboBox

2010-08-01 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Problem with ComboBox Fecha: Sun, 1 Aug 2010

Re: [Gambas-user] DatePicker and MessageLabel were disabled in revision #3084

2010-07-31 Thread craf
button to close would be great. Thank you very much Regards -Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: gambas-user@lists.sourceforge.net Asunto: [Gambas-user] DatePicker and

[Gambas-user] Destroy control

2010-07-22 Thread craf
Hi. If using code created a Button control within a Tabstrip control, and then delete the tabstrip control, is the control button still exist?, Or destroyed by destroying the tabstrip control. Regards -- This SF.net

Re: [Gambas-user] Destroy control

2010-07-22 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Destroy control Fecha: Thu, 22 Jul 2010 20:04:45

Re: [Gambas-user] How to make Context Menus?

2010-07-21 Thread craf
Hi. This link can serve: http://gambaslinux.eg2.fr/articles.php?lng=enpg=160 Regards -Mensaje original- De: vikram austin...@yahoo.com Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: gambas-user@lists.sourceforge.net Asunto: [Gambas-user] How to make

[Gambas-user] Prueba de correo

2010-07-06 Thread craf
Prueba de Correo. -- This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone? Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first

[Gambas-user] String Translate

2010-07-06 Thread craf
Hi. I wonder if it is possible to translate strings enclosed in a module, which will be used in two different forms. The point is: 1. Creation of two forms (Form1 and FMain). 2. Creating a button on each form. 3. Creation of a string constant in a module (Module1). 4. Constant translation

Re: [Gambas-user] Call control from one module

2010-05-13 Thread craf
() Dim sText As String sText = MMain.GetText() Endif 'in MMain Public Function GetText() As String Return TextArea1.Text End Fabien 2010/5/13 Fabián Flores Vadell fabianfloresvad...@gmail.com: I had no idea of this utility, would comment on the forum. Regards Hi Craf, note than

[Gambas-user] Program version numbers

2010-05-13 Thread craf
Hi. I'm trying to make my first program Gambas and let me know as I have to number the release version, 0.0.1 had thought. Version more = 0 Minor version = 0 Bugs = 1 Is it a good idea?, or take other number is greater? I appreciate any suggestions. Regards -- Cristian Abarzúa

Re: [Gambas-user] Gambas for windows, how?

2010-05-13 Thread craf
-Mensaje original- De: Werner wd...@netfront.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Gambas for windows, how? Fecha: Fri, 14 May 2010 02:28:16 +0800 On 14/05/10 00:41,

Re: [Gambas-user] Several lines from a string in the code

2010-05-13 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Several lines from a string in the code Fecha: Fri,

[Gambas-user] How to create event to control created at runtime

2010-05-12 Thread craf
Hi. I would like to know how to associate a click event to a button control created at runtime. I know the code to create the button is: Dim myButton as new Button (Fmain) but what I need is to create the click event for this button and the button to call the click event. Regards

Re: [Gambas-user] How to create event to control created at runtime

2010-05-12 Thread craf
at runtime Fecha: Wed, 12 May 2010 17:33:48 +0200 Hi. So? Dim myButton as new Button (Fmain) as clickeventname Regards Hi, Just add As ClickEventName regards Le 12/05/2010 17:18, craf a écrit : Hi. I would like to know how to associate a click event to a button control created at runtime. I

Re: [Gambas-user] How to create event to control created at runtime

2010-05-12 Thread craf
-Mensaje original- De: craf p...@vtr.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] How to create event to control created at runtime Fecha: Wed, 12 May 2010 11:43

[Gambas-user] Several lines from a string in the code

2010-05-12 Thread craf
Hi. There is a way to display a string in the code by several lines?, ex textarea1.text =bla,bla, bla, bla, bla, bla bla,bla,bla,bla,bla,bla,bla, blab,bla Regards

Re: [Gambas-user] Several lines from a string in the code

2010-05-12 Thread craf
/05/10 22:13, craf escribió: Hi. There is a way to display a string in the code by several lines?, ex textarea1.text =bla,bla, bla, bla, bla, bla bla,bla,bla,bla,bla,bla,bla, blab,bla Regards

Re: [Gambas-user] Several lines from a string in the code

2010-05-12 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Several lines from a string in the code Fecha: Wed,

[Gambas-user] Call control from one module

2010-05-12 Thread craf
Hi. I need to call a control that is located on the main form from a module, for this I have dealt with the following code: 'in module public sub proc_add() Fmain.control.text= Hello end sub But this form of call control does not work. Regards

Re: [Gambas-user] Call control from one module

2010-05-12 Thread craf
Thanks ! My fault. By spending some time with Python, and I forget everything. Regards Project properties -- Check: Form controls are public. Jussi On Thu, May 13, 2010 at 00:45, craf p...@vtr.net wrote: Hi. I need to call a control that is located on the main form from a module

Re: [Gambas-user] Call control from one module

2010-05-12 Thread craf
13/05/10 00:08, Jussi Lahtinen escribió: Project properties -- Check: Form controls are public. Jussi On Thu, May 13, 2010 at 00:45, craf p...@vtr.net wrote: Hi. I need to call a control that is located on the main form from a module, for this I have dealt with the following code

Re: [Gambas-user] Several lines from a string in the code

2010-05-12 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Several lines from a string in the code Fecha: Wed,

[Gambas-user] Translate text from a textarea control

2010-05-12 Thread craf
Hi. I have the following strings of text within a textarea control and would like to translate. As stated in the Gambas wiki, if you translate strings concatenated to use SUBST. 'code textarea1.text = subst(Moon\n 1 2,The Moon is the only natural satellite of Earth.\n,is the nearest body and

[Gambas-user] Installer in KDE

2010-05-06 Thread craf
Hi Benoit. I am now testing an installation of a project in Gambas KDE Desktop. For this I have tested it on Kubuntu, 8.04 - 8.10 - 9.04 - 9.10 versions (on 10.4 that I failed to recognize the usb virtualbox). The project is a simple form, which I believe a version of Gambas 2.20 on Kubuntu

Re: [Gambas-user] Cannot load class 'Balloon'

2010-05-01 Thread craf
Hi. To me it gives me the error: ERROR: #2: Cannot load class 'Balloon': Unable to load class file I compiled Gambas3 on Kubuntu 9.10 without error messages. What could be the cause?. Regards -Mensaje original- De: Fabien Bodard gambas...@gmail.com Reply-to: mailing list for gambas

Re: [Gambas-user] Installer

2010-04-29 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Installer Fecha: Thu, 29 Apr 2010 14:55:22 +0200

Re: [Gambas-user] Installer

2010-04-29 Thread craf
not thought but the difficulties is that look like to a package dependency management .. interesting :) 2010/4/29 craf p...@vtr.net: -Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing

[Gambas-user] Installer

2010-04-28 Thread craf
Hi Benoit Finally!. I managed to perform an installation of a draft Gambas, only with the shared libraries. Far only tested on Ubuntu from 9.10 to 8.04, version 6.06 does not work by having a GLIC less than 2.7. Well, now to keep trying with other Distro. Greetings and thank you very much

Re: [Gambas-user] GamBas3

2010-04-27 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] GamBas3 Fecha: Tue, 27 Apr 2010 23:28:30 +0200

Re: [Gambas-user] GamBas3

2010-04-27 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] GamBas3 Fecha: Tue, 27 Apr 2010 23:43:45 +0200

Re: [Gambas-user] Problem with directory /lib

2010-04-21 Thread craf
11:09:08 +0200 -Mensaje original- De: craf p...@vtr.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: Lista Gambas Ingles gambas-user@lists.sourceforge.net Asunto: [Gambas-user] Problem with directory /lib Fecha: Mon, 19 Apr 2010 11:15:32 -0400

[Gambas-user] Problem with directory /lib

2010-04-19 Thread craf
Hi. I managed to install a console program compiled on Ubuntu 9.04 to Ubuntu 8.04, using shared libraries. The problem is with a program that uses the GTK or QT library, and they require the libraries that are in the lib folder, and take into account that come with the PC and not those that are

Re: [Gambas-user] Problem with directory /lib

2010-04-19 Thread craf
-Mensaje original- De: craf p...@vtr.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: Lista Gambas Ingles gambas-user@lists.sourceforge.net Asunto: [Gambas-user] Problem with directory /lib Fecha: Mon, 19 Apr 2010 11:15:32 -0400 Hi. I managed to install

Re: [Gambas-user] Debugging program to find error

2010-04-12 Thread craf
Can you make an archive of your package and put it somewhere I can download it? I will test it on my Mandriva and see what happens exactly. Regards, -- Benoît Minisini Of course, and thanks again Here is the link: http://www.tecleandocodigo.webcindario.com/ Regards

Re: [Gambas-user] Debugging program to find error

2010-04-12 Thread craf
, craf wrote: file: No such file or directory ), is that the routes included in the file .sh are not taken into account. To fix this I added the following paths to the file .profile (The tests carried out from a project created in gambas2.20 in Ubuntu 9.10 to Ubuntu 8.04 distribution located

Re: [Gambas-user] Debugging program to find error

2010-04-12 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Debugging program to find error Fecha: Mon, 12 Apr

Re: [Gambas-user] Debugging program to find error

2010-04-12 Thread craf
-Mensaje original- De: Benoît Minisini gam...@users.sourceforge.net Reply-to: mailing list for gambas users gambas-user@lists.sourceforge.net Para: mailing list for gambas users gambas-user@lists.sourceforge.net Asunto: Re: [Gambas-user] Debugging program to find error Fecha: Mon, 12 Apr

<    1   2   3   >