Für dieses Forum muß Javascript im Browser aktiviert werden!
Kommentar: Einfügen von HTML im Kommentar: Link einfügen: <a href="LINKURL" target="_blank">LINKTITEL</a> Bild einfügen: <img src="BILDURL"> Text formatieren: <b>fetter Text</b> <i>kursiver Text</i> <u>unterstrichener Text</u> Kombinationen sind auch möglich z.B.: <b><i>fetter & kursiver Text</i></b> C2 Quellcode formatieren: <code>Quellcode</code> ASM Quellcode formatieren: <asm>Quellcode</asm> (Innerhalb eines Quellcodeabschnitts ist kein html möglich.) Wichtig: Bitte mache Zeilenumbrüche, bevor Du am rechten Rand des Eingabefeldes ankommst ! > Hallo nitraM > > Vielen Dank für die schnelle Antwort hat mir weiter geholfen > > > Lorenz > > < Hallo Lorenz > > > > dir fehlt ein Klammernpaar... > > > > > > if ((TsoR < TspU) or ((TspM - Tsoll) <= dTaus) and U == 0) > > if ((xxxxxxxxxxx) or ((yyyyyyyyyyyy) <= dTaus) and U == 0) > > if ((xxxxxxxxxxx) or (yyyyyyyyyyyyyyyyyyyyyyyy) and zzzzzz) > > > > somit prüfst du auf: x oder (y und z) > > du möchtest bestimmt: > > > > if (((TsoR < TspU) or ((TspM - Tsoll) <= dTaus)) and U == 0) > > > > nitraM