hello guys,
See the following code (it's in
VB)
================================================
For i = 1 To 3
MSHFlexGrid1.AddItem ""
MSHFlexGrid1.TextMatrix(i, 1) = "hye"
Next i
=================================================
At execution, it will create exactly three rows in MSHFlexGrid, filling with word "hye", right?
Ok, what if i want to create three colums with single row, which can too fill the word "hye"..
And remember, MSHFlexGrid1.TextMatrix(1, i) = "hye" in for loop is not working, giving this following error
"Runt-ime erro '381', Subscript out of Range"
Any Suggestion
~~Dev~~