Announcement

Collapse
No announcement yet.

is becomes a blue IS in PB8

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

  • is becomes a blue IS in PB8

    I have a variable inside my software called "is". On import to PB8 this variable "is" it turns to a blue "IS" as though it is a PB function...

    The code seems to work fine, is there anything i should be scared of... Just a note, the "is" variable appears just as it does in PB 7 editor but not PB8...

  • #2
    Syntax change:

    It's related to the new syntax for the CASE block

    SELECT CASE var
    CASE [IS] otherVar
    CASE [IS] anotherVar
    [CASE ELSE]
    END SELECT

    I'd recommend changing your variable to isVar or something like that.


    Last edited by StanHelton; 28 Feb 2008, 08:27 PM.
    Do not go quiet into that good night,
    ... Rage, rage against the dark.

    Comment

    Working...
    X