Re: [Gambas-user] packaging

2009-10-04 Thread Robert JUHASZ
Hi, I added "fakeroot" from the Synaptic Package Manager and with this I could pack my application - soma packages with different extension. I launched the .deb package which installed the application! I just had some complications after... Whet I started the application it refuses to connect to

[Gambas-user] QT themes and program appearance

2009-10-04 Thread richard terry
I wonder if any one could be kind enough to explain to me how to change the icon themes that show up in ones program. I though it was via qtconfig but that dosn't seem to make any difference in my instance for some reason. Regards richard --

Re: [Gambas-user] Socket not working in 2.8

2009-10-04 Thread nospam.nospam.nos...@gmail.com
On Sun, 2009-10-04 at 16:30 +0200, Ron wrote: > nospam.nospam.nos...@gmail.com wrote: > > On Sun, 2009-10-04 at 16:11 +0200, Benoît Minisini wrote: > > > > > >>> I upgraded to 2.16 and still have the problem. MySock_Read doesn't fire. > >>> There is an NNTP server on 192.168.1.8:5000 that sends

Re: [Gambas-user] Coordinates X and Y en DrawingArea controls

2009-10-04 Thread craf
Thanks you!. -Mensaje original- De: Benoît Minisini Reply-to: mailing list for gambas users Para: mailing list for gambas users Asunto: Re: [Gambas-user] Coordinates X and Y en DrawingArea controls Fecha: Sun, 4 Oct 2009 15:41:40 +0200 > Hello. > > VisualBasic Picturebox control has

Re: [Gambas-user] Socket not working in 2.8

2009-10-04 Thread Ron
nospam.nospam.nos...@gmail.com wrote: > On Sun, 2009-10-04 at 16:11 +0200, Benoît Minisini wrote: > > >>> I upgraded to 2.16 and still have the problem. MySock_Read doesn't fire. >>> There is an NNTP server on 192.168.1.8:5000 that sends back a greeting >>> when the connection is made by the cli

Re: [Gambas-user] Socket not working in 2.8

2009-10-04 Thread nospam.nospam.nos...@gmail.com
On Sun, 2009-10-04 at 16:11 +0200, Benoît Minisini wrote: > > I upgraded to 2.16 and still have the problem. MySock_Read doesn't fire. > > There is an NNTP server on 192.168.1.8:5000 that sends back a greeting > > when the connection is made by the client. The server logs also indicate > > that no

Re: [Gambas-user] Socket not working in 2.8

2009-10-04 Thread Benoît Minisini
> On Sun, 2009-10-04 at 21:17 +0800, Werner wrote: > > PRIVATE MySock AS Socket > > > > > > PUBLIC SUB Form_Open() > > MySock = NEW Socket'the socket is now > > created. Stream is closed > > MySock.Connect("localhost", 7000) 'does open the stream. > > END > >

Re: [Gambas-user] Socket not working in 2.8

2009-10-04 Thread nospam.nospam.nos...@gmail.com
On Sun, 2009-10-04 at 21:17 +0800, Werner wrote: > PRIVATE MySock AS Socket > > > PUBLIC SUB Form_Open() > MySock = NEW Socket'the socket is now > created. Stream is closed > MySock.Connect("localhost", 7000) 'does open the stream. > END > > I cannot repr

Re: [Gambas-user] Socket not working in 2.8

2009-10-04 Thread nospam.nospam.nos...@gmail.com
On Sun, 2009-10-04 at 15:05 +0200, Ron wrote: > nospam.nospam.nos...@gmail.com wrote: > > On Sun, 2009-10-04 at 14:53 +0200, Ron wrote: > >> And version 2.8 is a bit old, tons of bug fixes since then (we are at > >> 2.17 now) > >> > > > > Right. I'll upgrade and try the same thing again. Tha

Re: [Gambas-user] Coordinates X and Y en DrawingArea controls

2009-10-04 Thread Benoît Minisini
> Hello. > > VisualBasic Picturebox control has a MouseMove event which has 2 > arguments (x as integer, and as integer). > This lets me know the X and Y coordinates when the mouse moves over it. > Is there something similar in Gambas? > You have the MouseMove event, but you get the mouse coordi

Re: [Gambas-user] Socket not working in 2.8

2009-10-04 Thread Werner
nospam.nospam.nos...@gmail.com wrote: > On Sun, 2009-10-04 at 19:35 +0800, Werner wrote: > >> nospam.nospam.nos...@gmail.com wrote: >> >>> I tried to create an application using a Socket instantiated in code: >>> >>> [CODE] >>> PRIVATE MySock AS Socket >>> >>> PUBLIC SUB Form_Open() >>>

Re: [Gambas-user] Socket not working in 2.8

2009-10-04 Thread Ron
nospam.nospam.nos...@gmail.com wrote: > On Sun, 2009-10-04 at 14:53 +0200, Ron wrote: > >> nospam.nospam.nos...@gmail.com wrote: >> >>> On Sun, 2009-10-04 at 19:35 +0800, Werner wrote: >>> >>> nospam.nospam.nos...@gmail.com wrote: > I tried to crea

Re: [Gambas-user] Socket not working in 2.8

2009-10-04 Thread nospam.nospam.nos...@gmail.com
On Sun, 2009-10-04 at 14:53 +0200, Ron wrote: > nospam.nospam.nos...@gmail.com wrote: > > On Sun, 2009-10-04 at 19:35 +0800, Werner wrote: > > > >> nospam.nospam.nos...@gmail.com wrote: > >> > >>> I tried to create an application using a Socket instantiated in code: > >>> > >>> [CODE] > >>>

Re: [Gambas-user] Socket not working in 2.8

2009-10-04 Thread Ron
nospam.nospam.nos...@gmail.com wrote: > On Sun, 2009-10-04 at 19:35 +0800, Werner wrote: > >> nospam.nospam.nos...@gmail.com wrote: >> >>> I tried to create an application using a Socket instantiated in code: >>> >>> [CODE] >>> PRIVATE MySock AS Socket >>> >>> PUBLIC SUB Form_Open() >>>

Re: [Gambas-user] Socket not working in 2.8

2009-10-04 Thread nospam.nospam.nos...@gmail.com
On Sun, 2009-10-04 at 19:35 +0800, Werner wrote: > nospam.nospam.nos...@gmail.com wrote: > > I tried to create an application using a Socket instantiated in code: > > > > [CODE] > > PRIVATE MySock AS Socket > > > > PUBLIC SUB Form_Open() > > > > MySock = NEW Socket > > > > END > > [/CODE] > >

Re: [Gambas-user] Socket not working in 2.8

2009-10-04 Thread Werner
nospam.nospam.nos...@gmail.com wrote: > I tried to create an application using a Socket instantiated in code: > > [CODE] > PRIVATE MySock AS Socket > > PUBLIC SUB Form_Open() > > MySock = NEW Socket > > END > [/CODE] > > I also tried: > > [CODE] > PRIVATE MySock AS NEW Socket > [/CODE] > > I h

[Gambas-user] Socket not working in 2.8

2009-10-04 Thread nospam.nospam.nos...@gmail.com
I tried to create an application using a Socket instantiated in code: [CODE] PRIVATE MySock AS Socket PUBLIC SUB Form_Open() MySock = NEW Socket END [/CODE] I also tried: [CODE] PRIVATE MySock AS NEW Socket [/CODE] I had endless trouble getting the Socket to work so I created a new proje