home *** CD-ROM | disk | FTP | other *** search
- /* Button.rexx */
-
- IF ~SHOW('LIBRARIES','tritonrexx.library') THEN DO
- IF ~ADDLIB('tritonrexx.library',10,-30,0) THEN DO
- SAY 'Kann die <tritonrexx.library> nicht öffnen!'
- EXIT(10)
- END
- END
-
- windowtags = WindowID(1),
- WindowTitle('Button'),
- 'HorizGroupA',
- 'Space',
- 'VertGroupA',
- 'Space',
- Button("Knopf _1",1),
- Button("Knopf _2",2),
- 'Space',
- 'EndGroup',
- 'Space',
- 'EndGroup',
- 'EndProject'
-
- app = TR_CREATEAPP('TRCA_Name Button')
-
- IF app ~= '00000000'x THEN DO
-
- window = TR_OPENPROJECT(app,windowtags)
-
- IF window ~= '00000000'x THEN DO
- ende = 0
-
- DO WHILE ende ~= 1
- CALL TR_WAIT(app,'')
-
- DO WHILE TR_HANDLEMSG(app,'event')
- IF event.trm_class = 'TRMS_ACTION' THEN DO
- SELECT
- WHEN event.trm_id = 1 THEN
- SAY 'Knopf 1'
-
- WHEN event.trm_id = 2 THEN
- SAY 'Knopf 2'
-
- OTHERWISE
- NOP
- END
- END
-
- IF event.trm_class = 'TRMS_CLOSEWINDOW' THEN
- ende = 1
- END
- END
-
- CALL TR_CLOSEPROJECT(window)
- END
-
- CALL TR_DELETEAPP(app)
- END
-
- EXIT(0)
-