Re: [Gambas-user] gridview contents x, y are default richtext or text?

2017-06-29 Thread PICCORO McKAY Lenz
its there any possibility to override the .text to handle from .richtext ? Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-06-29 12:21 GMT-04:00 PICCORO McKAY Lenz : > gr that's wiki link its different from http://gambaswiki.org/ >

Re: [Gambas-user] gridview contents x, y are default richtext or text?

2017-06-29 Thread PICCORO McKAY Lenz
gr that's wiki link its different from http://gambaswiki.org/wiki/comp/gb.qt4/gridview damn ok thanks ... Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-06-29 11:03 GMT-04:00 adamn...@gmail.com : > > > On Thu, 29 Jun 2017 09:43:04 -0400 > PICCORO

Re: [Gambas-user] gridview contents x, y are default richtext or text?

2017-06-29 Thread adamn...@gmail.com
On Thu, 29 Jun 2017 09:43:04 -0400 PICCORO McKAY Lenz wrote: > hi Jorge, i already know why the usage of the richtext in the pagegrid.. > the question are why when i access to .text got nothing.. i modified the > code to set both: .richtext content and .text content..

Re: [Gambas-user] gridview contents x, y are default richtext or text?

2017-06-29 Thread PICCORO McKAY Lenz
hi Jorge, i already know why the usage of the richtext in the pagegrid.. the question are why when i access to .text got nothing.. i modified the code to set both: .richtext content and .text content.. but only the richtext content are got ... Lenz McKAY Gerardo (PICCORO)

Re: [Gambas-user] gridview contents x, y are default richtext or text?

2017-06-29 Thread Jorge CarriĆ³n
I wrote that software. It is available in the Farm with the name of pageGrid. The Richtext property is used because the control allows the rows to be automatically set according to the length of their content and the available column width (control's wordWrap property), and that can only be

Re: [Gambas-user] gridview contents x, y are default richtext or text?

2017-06-28 Thread adamn...@gmail.com
Just because something has a similar name doesn't mean it is the same thing. Your original question makes as much sense as: "How come when I access the Text property of a GridView, it doesn't give me the value of the Alignment property?" V_GridView_Cell.Text and _GridView_Cell.RichText are not

Re: [Gambas-user] gridview contents x, y are default richtext or text?

2017-06-28 Thread PICCORO McKAY Lenz
no no, i mean that i want to use the .text only but does not got any here, only by using .richtext.. ... Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-06-28 14:05 GMT-04:00 Charlie : > OK sorry I deleted that post once I reread your post. > > Have a look

Re: [Gambas-user] gridview contents x, y are default richtext or text?

2017-06-28 Thread Charlie
OK sorry I deleted that post once I reread your post. Have a look at this solution GUITest.tar - Check out www.gambas.one -- View this message in context:

Re: [Gambas-user] gridview contents x, y are default richtext or text?

2017-06-28 Thread PICCORO McKAY Lenz
but that's the problem, why richtext have contents and .text does not have it? Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-06-28 13:17 GMT-04:00 Charlie : > PICCORO McKAY Lenz wrote > > i have a piece of code, from a complex project, that export line

Re: [Gambas-user] gridview contents x, y are default richtext or text?

2017-06-28 Thread Charlie
PICCORO McKAY Lenz wrote > i have a piece of code, from a complex project, that export line by line > to > a file, the contents of the gridview, but not the text, only the richtext > why are not the same? Try using: *linefile &= "\"" & grid[d, c].RichText & "\";" 'Not .Text* Also you can use:

[Gambas-user] gridview contents x,y are default richtext or text?

2017-06-28 Thread PICCORO McKAY Lenz
i have a piece of code, from a complex project, that export line by line to a file, the contents of the gridview, but not the text, only the richtext why are not the same? For d = 0 To grid.Rows.Count - 1 linefile = "" For c = 0 To grid.Columns.Count - 1 linefile