Rule #1 - Be Patient - Rule #2 - Don't ask when, if you don't contribute - Rule #3 - You have coding skills - LinuxMCE's small brother is available: http://www.agocontrol.com
The values can be determined by looking up the relevant PK_ for a given table:mysql> SELECT PK_HouseMode, Description from HouseMode; +--------------+-----------------------+| PK_HouseMode | Description |+--------------+-----------------------+| 1 | Unarmed - at home | | 2 | Armed - away | | 3 | Armed - at home | | 4 | Sleeping | | 5 | Entertaining | | 6 | Armed - Extended away | +--------------+-----------------------+6 rows in set (0.02 sec)mysql> select PK_UserMode, Description FROM UserMode;+-------------+----------------+| PK_UserMode | Description |+-------------+----------------+| 1 | At Home | | 2 | Away | | 3 | Sleeping | | 4 | Do not disturb | +-------------+----------------+4 rows in set (0.03 sec)