Re: [Gambas-user] The program 'Embedder' received an X Window System error.

2012-09-25 Thread Jose J. Rodriguez
On 9/25/12, Benoît Minisini gam...@users.sourceforge.net wrote: Anyway, don't use embedder, it will be removed as it is a X11 specific protocol that won't work on Wayland and is not really useful. Oh, dear... We've used embedded apps quite a bit, stuff like cfdisk, gparted and others. Oh

Re: [Gambas-user] The program 'Embedder' received an X Window System error.

2012-09-25 Thread Jose J. Rodriguez
On 9/25/12, Benoît Minisini gam...@users.sourceforge.net wrote: Le 25/09/2012 20:35, Jose J. Rodriguez a écrit : On 9/25/12, Benoît Minisini gam...@users.sourceforge.net wrote: Anyway, don't use embedder, it will be removed as it is a X11 specific protocol that won't work on Wayland

Re: [Gambas-user] Create an application with root/sudo previlege

2012-04-03 Thread Jose J. Rodriguez
On 3/21/12, sundar_ima sundar_...@rediffmail.com wrote: I am creating an application which calls bash scripts many time with sudo/root privilege. Though i can execute bash script with either kdesu or gksu, it asks password many times. Instead it would be nice if any one help me on opening an

Re: [Gambas-user] some questions of: Struct

2011-01-17 Thread Jose J. Rodriguez
On 1/16/11, nando nand...@nothingsimple.com wrote: 4) This is similar to RECORD in VB. It is like Type in VB6. For example: Private Type MYSTRUCT ID As String Name As String End Type Then later you would do: Dim MyPerson As MYSTRUCT MyPerson.ID = 012 MyPerson.Name = Joe1962

Re: [Gambas-user] Gambas bug tracker

2011-01-12 Thread Jose J. Rodriguez
On 1/11/11, Benoît Minisini gam...@users.sourceforge.net wrote: Really? What is your country? Cuba. I had a few gambas and bash projects on googlecode myself, but haven't been able to manage them for a long time now. So I moved to www.berlios.de for my development stuff. Regards, Joe1962

Re: [Gambas-user] Gambas bug tracker

2011-01-11 Thread Jose J. Rodriguez
On 1/2/11, Benoît Minisini gam...@users.sourceforge.net wrote: Now, from the website, you can go to the new Gambas bug tracker located on code.google.com. I'd like to have a bug tracker written in Gambas, but for now, let's use the Google one. Too bad google code has been blocking my

Re: [Gambas-user] Gambas app run as root

2010-10-05 Thread Jose J. Rodriguez
On 10/1/10, IMP Technologies - Tajinder Singh imp.tsi...@gmail.com wrote: I have created a small basic interface for Fedora to change Plymouth theme. But as changing theme requires to run some commands as root, I would like to ask for root password before starting the application.

Re: [Gambas-user] Gambas3 build issues

2010-06-08 Thread Jose J. Rodriguez
On 6/3/10, Benoît Minisini gam...@users.sourceforge.net wrote: hum... what is your version of gcc ? struct _GtkPrinter { GObject parent_instance; GtkPrinterPrivate *GSEAL (priv); }; it seem that the compilator don't like the '(priv)' I would have said that

[Gambas-user] Gambas3 build issues

2010-06-02 Thread Jose J. Rodriguez
So I finally decided to check out Gambas3 from svn and give it a go, right after the new structure implemention announcement. However, I first had to download and build the latest versions of libtool, autoconf and automake, before reconf-all worked. Still, after all that, make fails, seemingly on

Re: [Gambas-user] Gambas3 build issues

2010-06-02 Thread Jose J. Rodriguez
On 6/2/10, Fabien Bodard gambas...@gmail.com wrote: hum... what is your version of gcc ? 4.2.3 Regards, Joe1962 -- ___ Gambas-user mailing list

Re: [Gambas-user] Gambas3 build issues

2010-06-02 Thread Jose J. Rodriguez
On 6/2/10, Fabien Bodard gambas...@gmail.com wrote: i've 4.4.3 ..; is there a change between this two version ... No idea, hopefully we will hear from others about what gcc versions have worked for them or not. Regards, Joe1962 2010/6/2 Jose J. Rodriguez joe1...@gmail.com: On 6/2/10

Re: [Gambas-user] Gambas3 build issues

2010-06-02 Thread Jose J. Rodriguez
On 6/2/10, Charlie Reinl karl.re...@fen-net.de wrote: Am Mittwoch, den 02.06.2010, 21:28 +0200 schrieb Fabien Bodard: i've 4.4.3 ..; is there a change between this two version ... 2010/6/2 Jose J. Rodriguez joe1...@gmail.com: On 6/2/10, Fabien Bodard gambas...@gmail.com wrote

Re: [Gambas-user] Structure support in Gambas 3

2010-05-26 Thread Jose J. Rodriguez
On 5/26/10, Benoît Minisini gam...@users.sourceforge.net wrote: Hi, I have just committed a new big internal change for Gambas 3 in revision #2970: structure support. Wow! That's cool! And I was just thinking this week that it might be about time for me to move up to G3... :D Regards,

Re: [Gambas-user] Trash

2009-10-09 Thread Jose J. Rodriguez
On 10/8/09, Matti math.e...@t-online.de wrote: Is there any way to move files and directories to the user's trash bin? Until someone implements the freedesktop.org trash specs on Gambas, you could try this: http://code.google.com/p/trash-cli/ Or a more involved general solution:

Re: [Gambas-user] kdesu vs gksu

2009-05-19 Thread Jose J. Rodriguez
On 5/18/09, Jesus Guardon jguar...@telefonica.net wrote: Yes, I know it may be a little off-topic, but the question is: I need to launch a process with root privileges from SHELL command in Gambas. Users of my application can have Gnome or KDE, so I don't know which command I must issue to

Re: [Gambas-user] Multiple TCP server sockets

2009-02-19 Thread Jose J. Rodriguez
On 2/19/09, Benoît Minisini gam...@users.sourceforge.net wrote: On 2/17/09, Benoît Minisini gam...@users.sourceforge.net wrote: Is there any way to get different TCP server objects with different ports to use a different socket object for read? I am trying to port my VB6

[Gambas-user] Multiple TCP server sockets

2009-02-17 Thread Jose J. Rodriguez
Is there any way to get different TCP server objects with different ports to use a different socket object for read? I am trying to port my VB6 multiport communications server application to Gambas2 and (I think) I need something like that to get it to work. Regards, Joe1962

Re: [Gambas-user] ServerSocket application without Forms

2009-01-29 Thread Jose J. Rodriguez
On 1/28/09, Benoit Minisini gam...@users.sourceforge.net wrote: On mardi 27 janvier 2009, Jose J. Rodriguez wrote: Is it possible to use ServerSocket in an applciation without Forms? I have been placed all the code in the Main Module and though I get a connection, the _Connection event

[Gambas-user] ServerSocket application without Forms

2009-01-27 Thread Jose J. Rodriguez
Is it possible to use ServerSocket in an applciation without Forms? I have been placed all the code in the Main Module and though I get a connection, the _Connection event does not seem to fire. Regards, Joe1962 -- This

Re: [Gambas-user] Multiple instances of Gambas ...

2008-11-04 Thread Jose J. Rodriguez
On 11/4/08, Gareth Bult [EMAIL PROTECTED] wrote: I have 4 screens .. I start Gambas on screen 3 .. then gambas2 will work quite happily on screens 2,3 and 4 , but will give the dump as quoted if started on screen 1... although I'm sure it wasn't working on 2 and 4 earlier. FWIW, I just ran