Announcement

Collapse
No announcement yet.

esignal.IsEntitled() does not return anything

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

  • esignal.IsEntitled() does not return anything

    Hi,

    esignal.Entitled() does not return false or true values.

    my program is working fine but, the following if statement never is set True.

    if (esignal.Entitled() =True) Then
    .....
    end if

  • #2
    If you look at the declaration of IsEntitled, you'll notice that it returns an integer. Try this instead:

    if esignal.IsEntitled = 1 then
    ...
    end if

    Cheers... George

    Comment

    Working...
    X