I have a DLT with the lighting group "SelectBlind" set to button 4 I have the following test logic in PAC which I want to increment a counter on button press and change the DLT label to reflect selected blind. Ultimately I'll used the SelectedBlind variable value in conjunction with an up, down, or stop button press to issue RS232 commands to the blinds (a bit like the way the Somfy remotes work) Here's the logic that's not working at present... once (GetLightingState("SelectBlind") = ON) then begin if SelectedBlind = 3 then SelectedBlind := 0 else SelectedBlind := SelectedBlind + 1; { Set the DLT Label for network 254, application lighting, group SelectBlind (123) to 'button label value' } Case SelectedBlind of 0 : SetStringIBSystemIO("Label Group Text", 254, "Lighting", "SelectBlind", 0, 'Select Blind'); 1 : SetStringIBSystemIO("Label Group Text", 254, "Lighting", "SelectBlind", 0, 'Study'); 2 : SetStringIBSystemIO("Label Group Text", 254, "Lighting", "SelectBlind", 0, 'Stairs'); End; End; I get the following error in the Logs DateTime= 11/22/2010 4:20:41 AM App= 056 Lighting Group= 123 SelectBlind Unit= 021 KEYBL5/DLTLOUNG Event= Group on DateTime= 11/22/2010 4:20:41 AM App= 056 Lighting Group= 123 SelectBlind Unit= 021 KEYBL5/DLTLOUNG Event= Group off DateTime= 11/22/2010 4:20:41 AM App= 056 Lighting Group= Unknown Unit= 001 PC_PACA/PAC Event= //JAMES/254/56 0 123 - F0 0 537461697273 #sourceunit=1 OID=4d565b50-d7bf-102d-8f63-e65605ef80c9 DLT is Firmware Version 3, and am running latest versions of Toolkit and PICED plus current firmware on PAC What am I missing? Cheers James