Tuesday, June 19, 2007

English: Harbour MiniGUI 2.0.028 Published:

- New: SET AUTOSCROLL Command. When set to ON, virtual
dimensioned windows scrollbars, are automatically
adjusted to make a non visible control that had gained
the focus, visible. Default is ON.

SET AUTOSCROLL ON | OFF

Samples: \hmg\samples\virtualdim

- New: HORIZONTAL property for RADIOGROUP control.

Samples:

@ 10,10 RADIOGROUP Radio_1 ;
OPTIONS { 'One' , 'Two' , 'Three', 'Four' } ;
VALUE 1 ;
WIDTH 100 ;
HORIZONTAL

DEFINE RADIOGROUP Radio_2
ROW 10
COL 150
OPTIONS { 'One' , 'Two' , 'Three', 'Four' }
VALUE 1
WIDTH 100
HORIZONTAL .T.
END RADIOGROUP

More Samples: \hmg\samples\radiogroup