Installation manual
STAR-LINK™
22
3
PROPERTY SYNCHRO
PURPOSE
Way to send data to the container.
DESCRIPTION
This property allows choosing between synchronized or asynchronous data events.
In the first case the control notifies the container the data event, and waits until the
application has proceeded the message. In the second case, the ActiveX sends the
event and goes on.
The first mode is implemented by SendMessage(….), the second mode by
PostMessage( … ).
IDL
[propget, id(15), helpstring("property Synchro")] HRESULT Synchro([out, retval]
BOOL *pVal);
[propput, id(15), helpstring("property Synchro")] HRESULT Synchro([in] BOOL
newVal);
DATA TYPE
Bool
POSSIBLE VALUES
The control accepts only these values:
TRUE, FALSE
The default value is TRUE.
EXAMPLE
...
Dim Synchro as Boolean
...
RFNCCTL.Synchro = TRUE
...
Synchro = RFNCCTL.Synchro
...