Re: [Gambas-user] How to open new examples in gambas, after finishing with one.

2013-11-11 Thread charlesg
assuming you are using Gambas3: File, Open example -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-open-new-examples-in-gambas-after-finishing-with-one-tp44200p44212.html Sent from the gambas-user mailing list archive at Nabble.com.

Re: [Gambas-user] Semi-persistent pop-up form?

2013-11-11 Thread Bruce
On Mon, 2013-11-11 at 22:30 +0100, Benoît Minisini wrote: > Le 11/11/2013 21:47, Bruce a écrit : > > Is there some way to make a popup form only close on a specific user > > action? > > > > In the attached picture, I have a popup form displaying some statistical > > guff about the data displayed in

Re: [Gambas-user] how to make threats

2013-11-11 Thread nando
one way is to make use rc.local file and place the name of the executable there with a & at the end to make it run in the background. -- Original Message --- From: PICCORO McKAY Lenz To: mailing list for gambas users Sent: Mon, 11 Nov 2013 14:01:28 -0430 Subject: [Gambas-user] h

Re: [Gambas-user] Semi-persistent pop-up form?

2013-11-11 Thread Benoît Minisini
Le 11/11/2013 21:47, Bruce a écrit : > Is there some way to make a popup form only close on a specific user > action? > > In the attached picture, I have a popup form displaying some statistical > guff about the data displayed in the main form. (I have pixelised the > main form just to highlight th

Re: [Gambas-user] wait vs sleep confusion, console works, graphically have strange behabior

2013-11-11 Thread Tobias Boege
On Mon, 11 Nov 2013, PICCORO McKAY Lenz wrote: > From: Tobias Boege > > On Mon, 11 Nov 2013, PICCORO McKAY Lenz wrote: > >> From: Tobias Boege > >> > Sleep puts the program to sleep - literally. It just waits for a given > >> > time > >> > to elapse and then resumes execution. > >> all programs i

Re: [Gambas-user] wait vs sleep confusion, console works, graphically have strange behabior

2013-11-11 Thread PICCORO McKAY Lenz
From: Tobias Boege > On Mon, 11 Nov 2013, PICCORO McKAY Lenz wrote: >> From: Tobias Boege >> > Sleep puts the program to sleep - literally. It just waits for a given >> > time >> > to elapse and then resumes execution. >> all programs inherint and parent? !! ok thnks for clarification! but >> som

Re: [Gambas-user] Key code constant wrong?

2013-11-11 Thread Randall Morgan
BTW, Most Enter Keys on Qwerty keyboards still maintain the old line-feed/Carriage-Return Arrow. An arrow that goes down and then to the left. Does your laptop Enter key have that icon? If so, that is the icon for "Return". On Mon, Nov 11, 2013 at 8:26 AM, nando wrote: > Thank you for the nosta

[Gambas-user] how to make threats

2013-11-11 Thread PICCORO McKAY Lenz
mi previous question no have response , so i reformuled: how to i can make threatds? i mean i wish to make daemons in gambas... if i started a gui proyect its easy, but if i started a console project do not know how to made that! wiki its vage in this and there's no examples in source -- Lenz

Re: [Gambas-user] wait vs sleep confusion, console works, graphically have strange behabior

2013-11-11 Thread Tobias Boege
On Mon, 11 Nov 2013, PICCORO McKAY Lenz wrote: > From: Tobias Boege > > Sleep puts the program to sleep - literally. It just waits for a given time > > to elapse and then resumes execution. > all programs inherint and parent? !! ok thnks for clarification! but > some details more: I didn't say an

Re: [Gambas-user] wait vs sleep confusion, console works, graphically have strange behabior

2013-11-11 Thread PICCORO McKAY Lenz
From: Tobias Boege > Sleep puts the program to sleep - literally. It just waits for a given time > to elapse and then resumes execution. all programs inherint and parent? !! ok thnks for clarification! but some details more: > > Wait, OTOH, keeps the interpreter active by recursively calling the e

Re: [Gambas-user] Key code constant wrong?

2013-11-11 Thread nando
Thank you for the nostalgia. I had an 8800b - lots of fun. and I do remember the black ones were NC. Early in the PC days, there was no keypad. I remember explicitly when the keypad came into use, the keypad ENTER was a different code. Caused me a headache, but allowed for using the keypad differe

Re: [Gambas-user] External library and calling functions?

2013-11-11 Thread Alexie
Ok, found an example on the following link: http://www.gambasdoc.org/help/lang/extdecl?v3 Will try it out :) 2013/11/11 Alexie > Hi Benoit, > > That sounds very promsing, but do you have an example of such callback > coded in Gambas? I can't really find it in the previous link for external > l

Re: [Gambas-user] External library and calling functions?

2013-11-11 Thread Alexie
Hi Benoit, That sounds very promsing, but do you have an example of such callback coded in Gambas? I can't really find it in the previous link for external libraries. Regards, Alex 2013/11/11 Benoît Minisini > Le 11/11/2013 07:27, Alexie a écrit : > > Hi All, > > > > Gambas is very capable of

Re: [Gambas-user] External library and calling functions?

2013-11-11 Thread Benoît Minisini
Le 11/11/2013 07:27, Alexie a écrit : > Hi All, > > Gambas is very capable of interfacing with external libraries, as > documented in: > http://gambasdoc.org/help/howto/extern?v3 > > I got it all working fine, i can call a function inside the library and i > get a value back (if there is a return v

[Gambas-user] DataView: how to know data of a certain cell?

2013-11-11 Thread Jose Monteiro
Using Gambas 3.4.2, I've put two DataView's on the same window, first one connected on a table. How can I grab the data of a certain cell, on a user selected roll?  I want to use this data to create a sql string and populate the second DataView. Regards José Monteiro