Saturday, August 23, 2008

Harbour MiniGUI 2.5.9:

English:

- Fixed: Pressing [Esc] key in splitbox child EditBox, causes splitbox
to close.

- New: 'Multiline' property for Button control. If .T. , it wraps
the text to multiple lines when the text is too long to fit on a
single line.

Sample:

DEFINE BUTTON BUTTON_5
ROW 10
COL 200
CAPTION "Please... Click This!"
ACTION MsgInfo('Thanks!')
PICTURE "button.BMP"
WIDTH 120
HEIGHT 60
PICTALIGNMENT LEFT
MULTILINE .T.
END BUTTON


More samples:\hmg\samples\button_2


Español:

- Solucionado: Presionando [Esc] en un EditBox contenido en un
SplitBox, causa que el SPlitBox se cierre.

- Nuevo: Propiedad 'Multiline' para el control Button. Si se establece
como .T., dividirá el texto del botón en múltiples líneas en caso que
sea demasiado extenso como para una sola.

Ejemplo:

DEFINE BUTTON BUTTON_5
ROW 10
COL 200
CAPTION "Please... Click This!"
ACTION MsgInfo('Thanks!')
PICTURE "button.BMP"
WIDTH 120
HEIGHT 60
PICTALIGNMENT LEFT
MULTILINE .T.
END BUTTON

Más ejemplos:\hmg\samples\button_2