Tuesday, July 15, 2008

Harbour MiniGUI 2.5.1:

English:

- New: Activex support. Inspired by Freewin Activex inplementation by
Oscar Joel Lira Lira (http://sourceforge.net/projects/freewin).
A new property called 'Object' was added to manipulate the control.

Syntax:

@ nRow , nCol ACTIVEX Name
[ OF | PARENT ] Parent
WIDTH nWidth
HEIGHT nHeight
PROGID cProgId

Or:

DEFINE ACTIVEX Name
<...>
END ACTIVEX

Sample:

<...>

@ 10 , 50 ACTIVEX Test ;
WIDTH 700 ;
HEIGHT 400 ;
PROGID "shell.explorer.2"

<...>

Win1.Test.Object:Navigate("www.harbour-project.org")

Look at \hmg\samples\activex.

Español:

- Nuevo: Soporte para Activex. Inspirado por la implementación de
Activex creada por Oscar Joel Lira Lira
(http://sourceforge.net/projects/freewin).
Una nueva propiedad llamada 'Object' fue agregada para manipular
el control.

Sintaxis:

@ nFila , nColumna ACTIVEX Nombre
[ OF | PARENT ] Parent
WIDTH nAncho
HEIGHT nAlto
PROGID cProgId

O:

DEFINE ACTIVEX Nombre
<...>
END ACTIVEX

Ejemplo:

<...>

@ 10 , 50 ACTIVEX Test ;
WIDTH 700 ;
HEIGHT 400 ;
PROGID "shell.explorer.2"

<...>

Win1.Test.Object:Navigate("www.harbour-project.org")

Más ejemplos: \hmg\samples\activex.