Jun 3, 2002 #1 JCooL Programmer Oct 21, 2001 89 US Hi, If i have a string "Hi boys this is a beutiful job", how can i fill a row or column of a grid with this. Thank you..
Hi, If i have a string "Hi boys this is a beutiful job", how can i fill a row or column of a grid with this. Thank you..
Jun 3, 2002 #2 Guest_imported New member Jan 1, 1970 0 Its quite straight forward really , Say we have a stringgrid called Grid, we would loop through the columns adding the string to the specified row(ie row 1) Such as for col:= 1 to Grid.Colcount Grid.Cells[col, row]:= 'Hi boys this is a beutiful job'; Hope this helps Upvote 0 Downvote
Its quite straight forward really , Say we have a stringgrid called Grid, we would loop through the columns adding the string to the specified row(ie row 1) Such as for col:= 1 to Grid.Colcount Grid.Cells[col, row]:= 'Hi boys this is a beutiful job'; Hope this helps