[b]PAC cant send Enable App msgs early in startup (was "Problem with SetEnableState()")[/b] I've got the following code in a test program: Global Variables bEnableSMSInterface : Boolean; bEnableBlindControl : Boolean; bEnableOccupancyMonitor : Boolean; bEnableLightsControl : Boolean; bEnableEntryPIR : Boolean; bEnablePassagePIR : Boolean; bEnableVerandahPIR : Boolean; bEnablePorticoPIR : Boolean; bEnableGaragePIR : Boolean; bEnableStartupMessage : Boolean; iDebugLevel : Integer; Initialisation bEnableSMSInterface := TRUE; bEnableBlindControl := TRUE; bEnableOccupancyMonitor := TRUE; bEnableLightsControl := TRUE; bEnableEntryPIR := TRUE; bEnablePassagePIR := TRUE; bEnableVerandahPIR := FALSE; bEnablePorticoPIR := TRUE; bEnableGaragePIR := FALSE; bEnableStartupMessage := TRUE; iDebugLevel := 0; SetEnableState("SMS", bEnableSMSInterface); SetEnableState("Blinds", bEnableBlindControl); SetEnableState("Occupancy", bEnableOccupancyMonitor); SetEnableState("Lights", bEnableLightsControl); SetEnableState("Entry PIR", bEnableEntryPIR); SetEnableState("Passage PIR", bEnablePassagePIR); SetEnableState("Verandah PIR", bEnableVerandahPIR); SetEnableState("Portico PIR", bEnablePorticoPIR); SetEnableState("Garage PIR", bEnableGaragePIR); SetEnableState("PAC 1 Startup Message", bEnableStartupMessage); SetEnableLevel("PAC 1 Debug", iDebugLevel); In general, nothing is getting sent out to CBUS. Maybe once in 5 times, one Enable event will be broadcast on to CBUS. Is the Enable application supported? Oh, and it also seems to do nothing when run in PICED as well. Actually it is now. I swear it wasn't initially... Still not working from the PAC though. I'm trying to 'publish' the logic options in my PAC out to CBUS so the status can be showed on a CTOUCH and the options can be disabled from a CTOUCH screen. Thanks, Brad.