[Gambas-user] ¿Why I can't modify a Table in Te xtEdit Example?

2009-08-19 Thread shordi
I'm making tries with the TextEdit example of Gambas2. (I need a simple web editor integrated with mi proyect). And I have tried this: Make a new toolbutton with this code DIM tabla AS String tabla = table border=1 width='100%'trtd width='100%'hola mundo /tdtd width='100%'como

Re: [Gambas-user] pickle?

2009-08-19 Thread Peter Tyler
O.k. sometimes I'm on the road - and it takes me a while to get back to gambas. Ideally I just want to write a class, which is all strings, to a file and read it back in. I saw in one of the posts that there may be a way to do this, but there wasn't any detail... Can any one explain further?

Re: [Gambas-user] pickle?

2009-08-19 Thread Benoît Minisini
O.k. sometimes I'm on the road - and it takes me a while to get back to gambas. Ideally I just want to write a class, which is all strings, to a file and read it back in. I saw in one of the posts that there may be a way to do this, but there wasn't any detail... Can any one explain

Re: [Gambas-user] ambiguous help

2009-08-19 Thread Doriano Blengino
Jean-Yves F. Barbier ha scritto: Hi list, I made a test as: A=B=C=5, the non-clear error msg is: Ambiguous expression. Please use braces does it mean: {curly braces}, (round brackets / parenthesis) or [square brackets]? (as many people improperly use the 2nd one with this name) JY

[Gambas-user] Paypal language

2009-08-19 Thread Demosthenes Koptsis
Hi all! I check out the Paypal link at first page of Gambas web site, and i saw that the language is set to French and i dont know to read the form labels of Visa form. Is it good idea to switch Paypal language to English? -- Γεια χαρα σε όλους!!! Regards, Demosthenes Koptsis

Re: [Gambas-user] ambiguous help

2009-08-19 Thread Benoît Minisini
Jean-Yves F. Barbier ha scritto: Hi list, I made a test as: A=B=C=5, the non-clear error msg is: Ambiguous expression. Please use braces does it mean: {curly braces}, (round brackets / parenthesis) or [square brackets]? (as many people improperly use the 2nd one with this name) JY

Re: [Gambas-user] ambiguous help

2009-08-19 Thread Jean-Yves F. Barbier
Doriano Blengino a écrit : Jean-Yves F. Barbier ha scritto: Hi list, I made a test as: A=B=C=5, the non-clear error msg is: Ambiguous expression. Please use braces does it mean: {curly braces}, (round brackets / parenthesis) or [square brackets]? (as many people improperly use the 2nd

Re: [Gambas-user] Paypal language

2009-08-19 Thread Benoît Minisini
Hi all! I check out the Paypal link at first page of Gambas web site, and i saw that the language is set to French and i dont know to read the form labels of Visa form. Is it good idea to switch Paypal language to English? I tried, but I found no option to change that. If someone that knows

Re: [Gambas-user] ambiguous help

2009-08-19 Thread Benoît Minisini
Doriano Blengino a écrit : Jean-Yves F. Barbier ha scritto: Hi list, I made a test as: A=B=C=5, the non-clear error msg is: Ambiguous expression. Please use braces does it mean: {curly braces}, (round brackets / parenthesis) or [square brackets]? (as many people improperly use the

Re: [Gambas-user] ambiguous help

2009-08-19 Thread Jean-Yves F. Barbier
Benoît Minisini a écrit : ... You must each assignment on its own line: A = 5 B = 5 C = 5 Because of the BASIC syntax, '=' is the assignment operator *and* the equality comparison operator, and so the C-like syntax cannot be implemented. ok that's clear now :) JY -- I know why the

Re: [Gambas-user] Paypal language

2009-08-19 Thread Demosthenes Koptsis
i dont have an account at Paypal so i can't help. But you can ask help from Paypal support. 2009/8/19 Benoît Minisini gam...@users.sourceforge.net: Hi all! I check out the Paypal link at first page of Gambas web site, and i saw that the language is set to French and i dont know to read the

[Gambas-user] pb changing a char in a string

2009-08-19 Thread Jean-Yves F. Barbier
Hi list, I've got a global flag that is a string of 2 chars. In some procs, I've to change the 1st char, but I've got an error: Global (class) = EXPORT CREATE STATIC PUBLIC lastSelection AS String = DU monitor = Global.lastSelection = DU prout, prout,

Re: [Gambas-user] pb changing a char in a string

2009-08-19 Thread Charlie Reinl
Am Mittwoch, den 19.08.2009, 19:03 +0200 schrieb Jean-Yves F. Barbier: Hi list, I've got a global flag that is a string of 2 chars. In some procs, I've to change the 1st char, but I've got an error: Global (class) = EXPORT CREATE STATIC PUBLIC

Re: [Gambas-user] pb changing a char in a string

2009-08-19 Thread Doriano Blengino
Jean-Yves F. Barbier ha scritto: Hi list, I've got a global flag that is a string of 2 chars. In some procs, I've to change the 1st char, but I've got an error: Global (class) = EXPORT CREATE STATIC PUBLIC lastSelection AS String = DU monitor =

Re: [Gambas-user] pb changing a char in a string

2009-08-19 Thread Laurent Carlier
Le mercredi 19 août 2009 19:03:35 Jean-Yves F. Barbier, vous avez écrit : proc = Global.last.Selection[1] = W gives me a not an object error in proc!?? why am I not able to access one char into a string? JY Because a string is a string, not an array of char :-) Global.lastSelection = W

Re: [Gambas-user] pb changing a char in a string

2009-08-19 Thread Jean-Yves F. Barbier
Charlie Reinl a écrit : Am Mittwoch, den 19.08.2009, 19:03 +0200 schrieb Jean-Yves F. Barbier: Hi list, I've got a global flag that is a string of 2 chars. In some procs, I've to change the 1st char, but I've got an error: Global (class) = EXPORT CREATE STATIC

Re: [Gambas-user] pb changing a char in a string

2009-08-19 Thread Jean-Yves F. Barbier
Jean-Yves F. Barbier a écrit : ... why am I not able to access one char into a string? Ok thanks to Doriano Laurent; strange but acknoledged. JY -- About the time we think we can make ends meet, somebody moves the ends. -- Herbert Hoover