> page_screen_output(0); % do not buffer output
> h = uicontrol('string', 'OK'); % should create a push button
> set(h, 'callback', @(h,e) disp('button clicked')); % add a callback to
> the button
> uicontrol('style', 'edit', 'min', 0, 'max', 2, 'position', [10 45 200
> 300], ...
> 'horizontalalignment', 'left', 'backgroundcolor', 'w'); % should
> create a text edit area
>
> Michael.
>
It seems to work fine, though this doesn't demonstrate how to get
information back from the button into an Octave process..