Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
How is set_property implemented?
Hi,
If I have an edit table with a lot of rows, calling, for example, Set_Property(OLECtrlEntID, "OLE.CellColors[field; record]", Array) on each row takes a very long time.
I think it takes a long time because a call to set property on a row does not use random access to access the row, but rather accesses the row by sequentially going through each row starting from the first until it finds the desired row.
Is this true? If so, would it be possible to make it random access? It seems like the edit table is using <> notation to access the desired row.
If I have an edit table with a lot of rows, calling, for example, Set_Property(OLECtrlEntID, "OLE.CellColors[field; record]", Array) on each row takes a very long time.
I think it takes a long time because a call to set property on a row does not use random access to access the row, but rather accesses the row by sequentially going through each row starting from the first until it finds the desired row.
Is this true? If so, would it be possible to make it random access? It seems like the edit table is using <> notation to access the desired row.
Comments
Thanks
Thanks
Anyway, paging is the best option.