Re: Mistake in wxEuphoria version 16
- Posted by Vinoba Jun 25, 2011
- 1671 views
Thanks for the quick attention to the "select_grid_row() and select_grid_col()" I will update my version as suggested above by you and keep the three parameters.
I still have the issue with "set_col_label" and had to rely on "set_cell_value " which seems to work well to set up the field labels in row 0 (first row). The question I had put was
""Why does "set_col_label" NOT work, while the "set_row_label" works in the original demo."
I am sure there is a simple answer to it or a slight correction.
for i = 1 to length( Properties ) do select_grid_cell( grdProp, 0, i-1) -- This line does not work -- set_col_label( grdProp, i-1, Properties[i] ) -- the follwing line works set_cell_value ( grdProp, Properties[i], 0, i-1, ) set_row_size( grdProp, i-1, 23) end for wxMain( frmMain )