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 &= "\"" & grid[d, c].text & "\";"
        Next
        linefile = Left(linefile, -1) & gb.NewLine
        parsetofile &= linefile
    Next

"parsetofile" its the file to put stream, but the grid object only have
text content in the richtext, and the text not? why if i using .text does
not show nothing?

in the data event i set both, text and richtext! but only got in richtext!
why?

Lenz McKAY Gerardo (PICCORO)
http://qgqlochekone.blogspot.com
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to