Settings of "User Interface Core" not working

G

Guest

Anybody knows whats the reason, when some of the user interface core settings
have no effect?
 
M

mich1985

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
 
G

Guest

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...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top