20 lines
466 B
Plaintext
20 lines
466 B
Plaintext
|
VARIABLES SECTION
|
|||
|
|
|||
|
BUTTON <Knopf 1> = Goto (erster);
|
|||
|
BUTTON <Knopf 2> = Goto (zweiter);
|
|||
|
|
|||
|
PROGRAM SECTION
|
|||
|
|
|||
|
Label (anfang);
|
|||
|
UserDialog ('0', STANDARD, BUTTON:'<Knopf 1>+<Knopf 2>', BLANK, BLANK, BLANK, BLANK, BLANK, BLANK, BLANK, BLANK, BLANK, BLANK, BLANK, BLANK, BLANK);
|
|||
|
Goto (ende);
|
|||
|
Label (erster);
|
|||
|
Message ('Erster Knopf gedr<64>ckt', ON_SCREEN, 5);
|
|||
|
Goto (anfang);
|
|||
|
Label (zweiter);
|
|||
|
Message ('Zweiter Knopf gedr<64>ckt', ON_SCREEN, 5);
|
|||
|
Label (ende);
|
|||
|
|
|||
|
PARAMETER SECTION
|
|||
|
|
|||
|
|