Announcement

Collapse
No announcement yet.

Where am I wrong ???

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Where am I wrong ???

    I am loosing my head with an error I can't identify.
    In the simple example attached bCompOnClose should be set
    by default to false, but it is not so.
    Where am I wrong ?
    Strangely if I edit the Efs to false it works, but it doesn't work with default.
    Thanks, as usual.
    Massimo
    Attached Files

  • #2
    Re: Where am I wrong ???

    Massimo
    The following line of code
    setDefault("false");
    should be written as
    setDefault(false);
    if you set the FunctionParameter to BOOLEAN. Also if you use BOOLEAN you can remove the addOption(...) methods
    Set the FunctionParameter to STRING if you instead want to maintain that parameter as a string
    Alex


    Originally posted by maxmax68
    I am loosing my head with an error I can't identify.
    In the simple example attached bCompOnClose should be set
    by default to false, but it is not so.
    Where am I wrong ?
    Strangely if I edit the Efs to false it works, but it doesn't work with default.
    Thanks, as usual.
    Massimo

    Comment


    • #3
      Re: Thanks

      Ooops. It was so simple and I was getting crazy.
      Thank you, till the next question.
      Massimo

      Comment

      Working...
      X