Let's say you had a data grid table with three columns, and you wanted the 
first column to be the sum of the other two, like this:

10      7       3
5       2       3
7       4       3

How would you calculate the first column while the table is filling in?


---

Originally, we looped through the data and did the calculations, then put the 
data into the data grid. Now the data set is getting so large that this is too 
slow, looping through once to calc, then again for the grid. So we're thinking 
doing the calculation in FillInData would be more efficient. If possible.

It's easy to find any field value in a Data Grid form, since pData is an array 
with the row values, but we'd like to avoid switching to a 
form._______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to