I currently have ID 103 with a default entry of dd-mmm-yyyy
ID 105 has an entry of h:nn:ss tt

Using
Code:
   set %title Channel Control Dialog $iif(!%connected,Not Connected to Any Networks,Connected to %connected out of $scon(0) Networks)
  .timertime -m 0 500 dialog -t Channel_Control %title $str($chr(160),100) $!date($did(103)) @ $!time($did(105))
 
I get an Invalid Parameters: $did error

Yet, if I use
Code:
   set %title Channel Control Dialog $iif(!%connected,Not Connected to Any Networks,Connected to %connected out of $scon(0) Networks)
  .timertime -m 0 500 dialog -t Channel_Control %title $str($chr(160),100) $!date(dd-mmm-yyyy) @ $!time(h:nn:ss tt)  
It works fine, and when I test the original echoing $did(103), $did(105), $date($did(103)), $time($did(105))
They all show correct information.

Any ideas as to why the code I want to use won't work, yet everything that I can think of for testing shows that it should.