Hallo,
ich verstehe, was ihr meint.
Auch wenn es vielleicht unsinnig und sinnfrei ist, mach ich erstmal weiter.
Eigentlich setzt man doch ein Bit mit:
Code:
attribut:= attribut or $01;
Und entfernt es wieder mit:
Code:
attribut := attribut and not $01;
Oder?
Ich mache das wie folgt:
Button1:
Code:
attribut:= attribut or $01;
attribut := attribut and not $02;
Byte = 1
Button2:
Code:
attribut:= attribut or $02;
attribut := attribut and not $01;
Byte = 00000011
Es müsste doch 00000010 rauskommen!?
Fg Dunkelbunt