Re: [Gambas-user] text interface apps

2009-08-13 Thread Steven revimmo
Hi, For a few (10?) years I programmed a small "windows" system in sh. It had windows, texts, some widgets etc. So, I think as long as You can do this in sh (with a little help of the curses lib), you should be able to do it in gambas to. (Or just call the appropriate shell routines.) I'll try t

Re: [Gambas-user] text interface apps

2009-08-12 Thread Doriano Blengino
Tomas Eroles i Forner ha scritto: > Hello all! > I would like to know if it's possible, working with text apps, write > texts in the screen at any position. > > An example: I learned programming with dBase III, and we used the command: > > @2,5 SAY "Hello, what is your name?: " GET w_name > > to w

Re: [Gambas-user] text interface apps

2009-08-12 Thread Rob
On Wednesday 12 August 2009 12:30 pm, Rolf-Werner Eilert wrote: > And yes: I don't think the special "graphical characters" like in DOS > (ASCII > 128) exist on a Linux terminal, do they? So it would be > somewhat difficult to build "mask" like things. Though Midnight > Commander can do this, how d

Re: [Gambas-user] text interface apps

2009-08-12 Thread Jean-Yves F. Barbier
Rolf-Werner Eilert a écrit : > Tomas Eroles i Forner schrieb: ... >> @2,5 SAY "Hello, what is your name?: " GET w_name >> to write on the coordinates 2,5 on the screen the phrase Hello, what is... >> Is it possible to do in GAMBAS? > > Linux terminal coordinates can have more than 80x25 characters

Re: [Gambas-user] text interface apps

2009-08-12 Thread Rolf-Werner Eilert
Tomas Eroles i Forner schrieb: > Hello all! > I would like to know if it's possible, working with text apps, write > texts in the screen at any position. > > An example: I learned programming with dBase III, and we used the command: > > @2,5 SAY "Hello, what is your name?: " GET w_name > > to w

Re: [Gambas-user] text interface apps

2009-08-12 Thread Jean-Yves F. Barbier
Tomas Eroles i Forner a écrit : > Hello all! > I would like to know if it's possible, working with text apps, write > texts in the screen at any position. > > An example: I learned programming with dBase III, and we used the command: ;-) very good software indeed (I miss it sometimes) > @2,5 S

[Gambas-user] text interface apps

2009-08-12 Thread Tomas Eroles i Forner
Hello all! I would like to know if it's possible, working with text apps, write texts in the screen at any position. An example: I learned programming with dBase III, and we used the command: @2,5 SAY "Hello, what is your name?: " GET w_name to write on the coordinates 2,5 on the screen the phr