I'm filling a very simple GridView with the below code but I cannot adjust
the column length.  I have resizable set to TRUE and I have also tried to do
GridView1.resizable = TRUE after the grid is populated with the values.  Am
I missing something or using the wrong property?  Also is there an auto
length to make sure the whole column is visiable?  Thanks in advance.

FOR EACH sb IN arrayOfLines
    sb = Trim(sb)
    'PRINT sb
    arrayOfSpaces = Split(sb, " ")
    GridView1[rowCount, 0].Text = arrayOfSpaces[0]
    GridView1[rowCount, 1].Text = arrayOfSpaces[1]


at the bottom of the SUB:

GridView1.Resizable = TRUE
------------------------------------------------------------------------------
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to