[Gambas-user] Can't access PostreSQL schemas

2009-09-23 Thread José Luis Castro
Hi. I've created a schema in a PostreSQL database. The sintax for accessing data from the schema is: schema.tableName That works fine when trying with .exec method (i.e. "SELECT * FROM schema.tableName" or "INSERT INTO schema.tableName VALUES..."), but it doesn't work when I try to use the .edit me

Re: [Gambas-user] Yan: Button form

2009-09-23 Thread Werner
abdurrahman ulusoy wrote: > ok. maybe a circle or other form but rectangle. > > --- 23/09/09 Çar tarihinde abdurrahman ulusoy şöyle > yazıyor: > > Kimden: abdurrahman ulusoy > Konu: [Gambas-user] İlt: Button form > Kime: gambas-user@lists.sourceforge.net > Tarihi: 23 Eylül 2009 Çarşamba, 15:00 >

Re: [Gambas-user] How to sent a line line to a lp1 printer and form to lp0 printer directly.

2009-09-23 Thread Benoît Minisini
> these are shell commands, cat and echo > cat shows the contents of a file and echo print a string in screen > we use redirection which is > > to a device printer /dev/lp0 or lp1 or lp2 see what is your printer > > To print a file you can write in shell or in gambas SHELL command the > command c

Re: [Gambas-user] How to sent a line line to a lp1 printer and form to lp0 printer directly.

2009-09-23 Thread Demosthenes Koptsis
these are shell commands, cat and echo cat shows the contents of a file and echo print a string in screen we use redirection which is > to a device printer /dev/lp0 or lp1 or lp2 see what is your printer To print a file you can write in shell or in gambas SHELL command the command cat file > /dev/

[Gambas-user] Yan: Button form

2009-09-23 Thread abdurrahman ulusoy
ok. maybe a circle or other form but rectangle. --- 23/09/09 Çar tarihinde abdurrahman ulusoy şöyle yazıyor: Kimden: abdurrahman ulusoy Konu: [Gambas-user] İlt: Button form Kime: gambas-user@lists.sourceforge.net Tarihi: 23 Eylül 2009 Çarşamba, 15:00 Can i change button forms? like attached p

Re: [Gambas-user] Passive wait ???

2009-09-23 Thread M0E Lnx
Great. Thank you. This takes care of what I needed to do On Sep 23, 2009 2:47 PM, "Lee McPherson" wrote: Yes M0E Lnx wrote: > Timer seems to do the trick > > Just to be sure though.. > 5 seconds = 5000 milise... > --

Re: [Gambas-user] Passive wait ???

2009-09-23 Thread Lee McPherson
Yes M0E Lnx wrote: > Timer seems to do the trick > > Just to be sure though.. > 5 seconds = 5000 miliseconds? > Can somebody verify that for me? > > -- > Come build with us! The BlackBerry® Developer Conference in SF, CA >

Re: [Gambas-user] Passive wait ???

2009-09-23 Thread M0E Lnx
Timer seems to do the trick Just to be sure though.. 5 seconds = 5000 miliseconds? Can somebody verify that for me? -- Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you nee

Re: [Gambas-user] How to sent a line line to a lp1 printer and form to lp0 printer directly.

2009-09-23 Thread Lee McPherson
Doriano Blengino wrote: > Lee McPherson ha scritto: > >> One alternative is to use the program parashell >> >> Software: http://parashell.sourceforge.net/ >> >> Docs: http://parashell.sourceforge.net/docs/parallel.txt >> >> Apparently, all you need to do is send it byte commands. (and you need

Re: [Gambas-user] How to sent a line line to a lp1 printer and form to lp0 printer directly.

2009-09-23 Thread Doriano Blengino
Lee McPherson ha scritto: > One alternative is to use the program parashell > > Software: http://parashell.sourceforge.net/ > > Docs: http://parashell.sourceforge.net/docs/parallel.txt > > Apparently, all you need to do is send it byte commands. (and you need > root access) I bet that would be

Re: [Gambas-user] How to sent a line line to a lp1 printer and form to lp0 printer directly.

2009-09-23 Thread Lee McPherson
One alternative is to use the program parashell Software: http://parashell.sourceforge.net/ Docs: http://parashell.sourceforge.net/docs/parallel.txt Apparently, all you need to do is send it byte commands. (and you need root access) I bet that would be much easier if it works as advertised.

Re: [Gambas-user] How to sent a line line to a lp1 printer and form to lp0 printer directly.

2009-09-23 Thread Doriano Blengino
Vassilis K ha scritto: > Actually it is a serial matrix impact printer (panasonic KX-P1150) with a 9 > pins head and parallel port (LTP) > Just because the printer is like this, you *don't* need to use a SHELL. It can be simpler, however. The device /dev/lp0 is what the name says: "Line Printe

Re: [Gambas-user] How to sent a line line to a lp1 printer and form to lp0 printer directly.

2009-09-23 Thread Vassilis K
I do not understand how exactly to use : cat file > /dev/lp0 or echo "test" > /dev/lp0 Could you be more specific? Ευχαριστώ Δημοσθένη! Thanks Demosthenis! -- Come build with us! The BlackBerry® Developer Conference in

Re: [Gambas-user] How to sent a line line to a lp1 printer and form to lp0 printer directly.

2009-09-23 Thread Demosthenes Koptsis
try also cat file > /dev/lp0 or echo "test" > /dev/lp0 did i help you? On Wed, Sep 23, 2009 at 5:54 PM, Vassilis K wrote: > Actually it is a serial matrix impact printer (panasonic KX-P1150) with a 9 > pins head and parallel port (LTP) > So I think it is only possible to print with Shell comm

Re: [Gambas-user] How to sent a line line to a lp1 printer and form to lp0 printer directly.

2009-09-23 Thread Vassilis K
Actually it is a serial matrix impact printer (panasonic KX-P1150) with a 9 pins head and parallel port (LTP) So I think it is only possible to print with Shell command like SHELL lp -d ltp2 printfile.ps I only need an example for this action. If somebody has done it before it would be nice to

Re: [Gambas-user] signal #11

2009-09-23 Thread Stefano Palmeri
Il mercoledì 23 settembre 2009 14:29:08 Benoît Minisini ha scritto: > > This code stopped with signal #11: > > > > , > >,, ,,, PUBLIC SUB Main() > > > > DIM sHostname, sDisplay AS String > > DIM

Re: [Gambas-user] signal #11

2009-09-23 Thread Benoît Minisini
> This code stopped with signal #11: > > ,,, > ,,, PUBLIC SUB Main() > > DIM sHostname, sDisplay AS String > DIM sClipboardLastEntry AS String > > SHELL "hostname" TO sHostname > SHELL "xd

[Gambas-user] İlt: Button form

2009-09-23 Thread abdurrahman ulusoy
Can i change button forms? like attached pic. ___ Yahoo! Türkiye açıldı! http://yahoo.com.tr İnternet üzerindeki en iyi içeriği Yahoo! Türkiye sizlere sunuyor!<>-

Re: [Gambas-user] chop project

2009-09-23 Thread Jean-Yves F. Barbier
Charlie Reinl a écrit : > Salut Jean-Yves, > > Poseidon the father of gambas, raised gambas-components for that. > > And that is what I do. My programs are compiled as components, so I can > use them as program, embed then in other programs or just call them from > an other program. > > To unify t

Re: [Gambas-user] Using SVN in gambas question

2009-09-23 Thread M0E Lnx
I have always created the project without the subversion option enabled. The added the project to the svn repo. after that, then you open the project with the gambas ide you can commit and update using the gui. Always worked for me On Sep 23, 2009 4:23 AM, "richard terry" wrote: I'm writing some

[Gambas-user] signal #11

2009-09-23 Thread Stefano Palmeri
This code stopped with signal #11: ,, PUBLIC SUB Main() DIM sHostname, sDisplay AS String DIM sClipboardLastEntry AS String SHELL "hostname" TO sHostname SHELL "xdpyinfo | head -

Re: [Gambas-user] How to sent a line line to a lp1 printer and form to lp0 printer directly.

2009-09-23 Thread Doriano Blengino
Vassilis K ha scritto: > I have an 9 pins printer for this job. > > If I understood well I have to make a file with the line that I want to print > then I shall use the SHELL command to send it directly to the printer lp1: > > SHELL lp -d lpt2 printfile.ps > > I need a small example to get it to wo

[Gambas-user] How to sent a line line to a lp1 printer and form to lp0 printer directly.

2009-09-23 Thread Vassilis K
I have an 9 pins printer for this job. If I understood well I have to make a file with the line that I want to print then I shall use the SHELL command to send it directly to the printer lp1: SHELL lp -d lpt2 printfile.ps I need a small example to get it to work. I also need the printer to feed

[Gambas-user] Using SVN in gambas question

2009-09-23 Thread richard terry
I'm writing some documentation for my project. When I created it from svn, I did it via the gambas gui interface, not by using the terminal as one would for example by typing svn checkout svn://project/trunk. I wondered if it is possible to do a manual checkout of an svn project and then load

Re: [Gambas-user] chop project

2009-09-23 Thread Charlie Reinl
Am Mittwoch, den 23.09.2009, 04:22 +0200 schrieb Jean-Yves F. Barbier: > Hi people, > > I wonder if it is possible to chop a big project into some smaller ones? > > My only problem is to keep a kinda global class linked to all sub-projects > in oder to "pass" parms from one sub-project to another

Re: [Gambas-user] Passive wait ???

2009-09-23 Thread Ricardo Díaz Martín
I think you need to use a Timer control inside the form to control your status bar message. It's simple to use. Regards, Ricardo Díaz 2009/9/23 M0E Lnx > Never heard of a statuslabel before... but yes... I need it to clear after > 5 > seconds > > On Sep 22, 2009 5:07 PM, "Benoît Minisini" > w