Re: [Gambas-user] Procedure new()

2009-07-29 Thread craf
thank you very much , and to assimilate the differences Regards -Mensaje original- De: Benoît Minisini Reply-to: mailing list for gambas users Para: mailing list for gambas users Asunto: Re: [Gambas-user] Procedure new() Fecha: Wed, 29 Jul 2009 16:21:08 +0200 > Benoît Minisini ha sc

Re: [Gambas-user] Procedure new()

2009-07-29 Thread Benoît Minisini
> Benoît Minisini ha scritto: > >> craf ha scritto: > >>> Hi. > >>> > >>> What are the roles in the general procedure new ()? > >>> What difference has the procedure Form_Open () > >> > >> If I correctly understand your question... > >> Regards, > >> Doriano > > > > Or maybe he was talking about "_

Re: [Gambas-user] Procedure new()

2009-07-29 Thread Doriano Blengino
Benoît Minisini ha scritto: >> craf ha scritto: >> >>> Hi. >>> >>> What are the roles in the general procedure new ()? >>> What difference has the procedure Form_Open () >>> >> If I correctly understand your question... >> Regards, >> Doriano >> >> > > Or maybe he was talking about

Re: [Gambas-user] I've a command line gambas program, how do I send some paramater for it ?

2009-07-29 Thread Ron
Swee Kwang Tan wrote: > We can write it in C/C++, like this > int main (int argc, char * argv[]) { > if (argc < 3) { > > > Hi, Try: PUBLIC SUB Main() DIM a AS String PRINT "Count " & Application.Args.Count FOR EACH a IN Application.Args PRINT a NEXT END htt

[Gambas-user] I've a command line gambas program, how do I send some paramater for it ?

2009-07-29 Thread Swee Kwang Tan
We can write it in C/C++, like this int main (int argc, char * argv[]) {   if (argc < 3) {   ___ 辣茩妏蚚閉湮⺍講捇誥蚘眊 http://cn.mail.yahoo.com -- Let Crystal Reports

Re: [Gambas-user] Breakpoint question

2009-07-29 Thread Benoît Minisini
> On Wed, 29 Jul 2009 07:41:16 pm Charlie Reinl wrote: > > Am Mittwoch, den 29.07.2009, 11:26 +0200 schrieb Doriano Blengino: > > > richard terry ha scritto: > > > > I don't suppose anyone know's where gambas stores previous > > > > breakpoints that it re-uses when the program is started. > > > > >

Re: [Gambas-user] Procedure new()

2009-07-29 Thread Benoît Minisini
> craf ha scritto: > > Hi. > > > > What are the roles in the general procedure new ()? > > What difference has the procedure Form_Open () > > If I correctly understand your question, the reply is the following. > new() is a generic language construct which creates new objects > (instances of a clas

Re: [Gambas-user] Background color for Textbox

2009-07-29 Thread Benoît Minisini
> I continue praying, but it's not available yet :( > > 2009/7/29 Benoît Minisini > > > > > > Hello. > > > > > > > > > > When selecting a background color for a textbox only allows me to > > > > > select any of them. For example to select the color blue shown by > > > > > the arrow, shows me a com

Re: [Gambas-user] Background color for Textbox

2009-07-29 Thread Benoît Minisini
> I continue praying, but it's not available yet :( > Yep. If you look at the feed on the summary page, you will see that it has stopped yesterday with the revision #2185, while the latest one is #2189. -- Benoît -- Le

Re: [Gambas-user] Background color for Textbox

2009-07-29 Thread José Luis Redrejo
I continue praying, but it's not available yet :( 2009/7/29 Benoît Minisini > > > > Hello. > > > > > > > > When selecting a background color for a textbox only allows me to > > > > select any of them. For example to select the color blue shown by the > > > > arrow, shows me a completely differen

Re: [Gambas-user] Breakpoint question

2009-07-29 Thread richard terry
On Wed, 29 Jul 2009 07:41:16 pm Charlie Reinl wrote: > Am Mittwoch, den 29.07.2009, 11:26 +0200 schrieb Doriano Blengino: > > richard terry ha scritto: > > > I don't suppose anyone know's where gambas stores previous breakpoints > > > that it re-uses when the program is started. > > > > ...in a hid

Re: [Gambas-user] Breakpoint question

2009-07-29 Thread Charlie Reinl
Am Mittwoch, den 29.07.2009, 11:26 +0200 schrieb Doriano Blengino: > richard terry ha scritto: > > I don't suppose anyone know's where gambas stores previous breakpoints that > > it > > re-uses when the program is started. > > > ...in a hidden project file, named ".settings", located in the sa

Re: [Gambas-user] Breakpoint question

2009-07-29 Thread Doriano Blengino
richard terry ha scritto: > I don't suppose anyone know's where gambas stores previous breakpoints that > it > re-uses when the program is started. > ...in a hidden project file, named ".settings", located in the same path of the other sources. If not there, try also ".project", but .settings

[Gambas-user] Breakpoint question

2009-07-29 Thread richard terry
I don't suppose anyone know's where gambas stores previous breakpoints that it re-uses when the program is started. I'm experiencing a nasty bug in gambas which dies with a debug error and it started after I put in a breakpoint and I can't code as a result. Any help appreciated. (build 2189 an

Re: [Gambas-user] Procedure new()

2009-07-29 Thread Doriano Blengino
craf ha scritto: > Hi. > > What are the roles in the general procedure new ()? > What difference has the procedure Form_Open () > If I correctly understand your question, the reply is the following. new() is a generic language construct which creates new objects (instances of a class). Severa