Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
can i have table with it's values e.g 5,10,15,20 and when i add new record select random value from the first table and move to another table.
Hi,use Before record added event on the Eventstab to move record from one table to another. Here is a sample:
global $dal;$AnotherTableName=$dal->Table("AnotherTableName");$AnotherTableName->Fieldname1 = $values["Fieldname1"];$AnotherTableName->Fieldname2 = $values["Fieldname2"];$AnotherTableName->Fieldname3 = $values["Fieldname3"];$AnotherTableName->Add();