Announcement

Collapse
No announcement yet.

Bit-fields - Why not ???

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

  • Bit-fields - Why not ???

    Hello,

    this don't work why???

    1) DIM monat(1 TO 12 ) AS BIT *1 IN WORD

    2) too:

    type bitts
    Fehletikett_gedruckt AS BIT*1 IN WORD '1 von 16
    monat(1 TO 12) AS BIT *1
    frei as bit*3
    end type

    Makes both an error Nr. 534 = Bit field error

    Regards

    Matthias Kuhn

  • #2
    the help says that bit variables may not be used as array variables.

    Comment

    Working...
    X