Settings of "User Interface Core" not working

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Anybody knows whats the reason, when some of the user interface core settings
have no effect?
 
Hello Guenter,
try to set your system language of your development system to
english...in the user interface core component script they use for a
comparison of true <"true"> instead of <true> as value...here an
example:

If cmiThis.Properties("cmiShowMyDocuments").Value = "True" then

In german the value of "If
cmiThis.Properties("cmiShowMyDocuments").Value" results in Wahr and not
in True.
You should create your own User Interface Core Component with the
according script and the following syntax:

If cmiThis.Properties("cmiShowMyDocuments").Value = True then (instead
of "True")


regards,

flo
 
Thanks, thats exactly the problem :-)
....and the reasen why I constantly demand english environment from our IT
department lol. You saved me several hours of pain...
 
Back
Top