Re: [Gambas-user] Catch NULL character

2009-04-20 Thread Rodney Rundstrom
uation, not a NULL character. Make sure you've got it correct or confusing results will follow. -Fernando -- Original Message --- From: "Rodney Rundstrom" To: "'mailing list for gambas users'" Sent: Mon, 20 Apr 2009 10:56:29 +1200 Subject:

Re: [Gambas-user] Catch NULL character

2009-04-19 Thread Rodney Rundstrom
As the NULL character is not a true character just a place holder you should use ISNULL( ) Ie if ISNULL(NULL) Then print "GOT it" Just change NULL for your variable Rodney Rundstrom -Original Message- From: CelticBhoy [mailto:weldon_g...@hotmail.com] Sent: Sunday, 29 Ma

[Gambas-user] Databrowser

2009-04-18 Thread Rodney Rundstrom
When I insert a databrowser into my project I sometime do not see all the control icons and currently on some when all are there the "new" does seem to work Anyone help Thanks Rodney Rundstrom -- Stay

[Gambas-user] Form Bug?

2009-04-17 Thread Rodney Rundstrom
? Rodney Rundstrom -- Stay on top of everything new and different, both inside and around Java (TM) technology - register by April 22, and save $200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco. 300 plus

Re: [Gambas-user] Dynamic Objects

2009-04-06 Thread Rodney Rundstrom
odney -Original Message- From: Doriano Blengino [mailto:doriano.bleng...@fastwebnet.it] Sent: Wednesday, 1 April 2009 11:13 p.m. To: mailing list for gambas users Subject: Re: [Gambas-user] Dynamic Objects Rodney Rundstrom ha scritto: > Thanks for that I'll work thought over the next few

Re: [Gambas-user] Dynamic Objects

2009-03-31 Thread Rodney Rundstrom
list for gambas users Subject: Re: [Gambas-user] Dynamic Objects Rodney Rundstrom ha scritto: > Thanks using last.text works in this case, can you clarify how I would > access using parent/child can a form itself be the container or my I use > another although a similar arrangement is ava

Re: [Gambas-user] Dynamic Objects

2009-03-30 Thread Rodney Rundstrom
: Doriano Blengino [mailto:doriano.bleng...@fastwebnet.it] Sent: Monday, 30 March 2009 9:52 p.m. To: mailing list for gambas users Subject: Re: [Gambas-user] Dynamic Objects Rodney Rundstrom ha scritto: > Thanks to some of the member I can now create objects dynamically. > > If I create a

[Gambas-user] Dynamic Objects

2009-03-29 Thread Rodney Rundstrom
Thanks to some of the member I can now create objects dynamically. If I create a number of buttons I can position and label them differently. I can also name them differently However I can have a number of objects with the same name on a form? I can access an event say click on any of the

Re: [Gambas-user] Dynamic objects

2009-03-26 Thread Rodney Rundstrom
Thanks I now can dynamically create object not sure where the me in Textbox(me) come from but it all works well -Original Message- From: M0E Lnx [mailto:m0e@gmail.com] Sent: Wednesday, 25 March 2009 2:03 a.m. To: mailing list for gambas users Subject: Re: [Gambas-user] Dynamic object

[Gambas-user] Dynamic objects

2009-03-24 Thread Rodney Rundstrom
I wish to create objects in code. For example I wish to create a textbox and populate it from a mysql table. Repositioning it in code each time. The number of instances would depend on the Number of records in the table. I then need to index through the items to reset the names from time to time.