Re: [Gambas-user] Gridview - alignment

2010-03-11 Thread zolaysoftsolutions
Thank you vey much Benoit! ..it works perfectly. Regards, Zoli B. Benoît Minisini wrote: > >> Hello Mr.Minisini, >> >> First time I thank you for develop Gambas..and thank you for try to >> halping me. >> >> If I introduce in "Gridview1_data" the folowing command (this mean during >> the

Re: [Gambas-user] Gridview - alignment

2010-03-11 Thread Benoît Minisini
> Hello Mr.Minisini, > > First time I thank you for develop Gambas..and thank you for try to > halping me. > > If I introduce in "Gridview1_data" the folowing command (this mean during > the Data event): > > GridView1.data.Alignment = Align.Right > This works perfectly but all my data is ali

Re: [Gambas-user] Gridview - alignment

2010-03-11 Thread zolaysoftsolutions
Hello Mr.Minisini, First time I thank you for develop Gambas..and thank you for try to halping me. If I introduce in "Gridview1_data" the folowing command (this mean during the Data event): GridView1.data.Alignment = Align.Right This works perfectly but all my data is aligned to right

Re: [Gambas-user] Gridview - alignment

2010-03-11 Thread Benoît Minisini
> HI everybody, > >I have the folowing strange problem: I filled a grid with data from an > sql command result as you can see in the code: > > PUBLIC SUB Button_click > hrex = Proced.$db.Exec(miex) > GridView1.Columns.count = 6 > GridView1.rows.count = hrex.count > END > > PUBLIC SUB Grid

[Gambas-user] Gridview - alignment

2010-03-11 Thread Zoltan Biro
HI everybody, I have the folowing strange problem: I filled a grid with data from an sql command result as you can see in the code: PUBLIC SUB Button_click hrex = Proced.$db.Exec(miex) GridView1.Columns.count = 6 GridView1.rows.count = hrex.count END PUBLIC SUB GridView1_Data(Row AS Intege