CQG API 4.0 - Revised
IsReady Event
See Also  Send Feedback
ready_status

readyStatus should reflect the Excel.Application.Ready flag. If Application.Ready is True, then readyStatus should be assigned rsReady. If Application.Ready is False then readyStatus should be assigned rsNotReady.

If CQGCEL gets rsBusy or rsNotReady, the attempt is repeated after the timeout, until CQGCEL gets rsReady and becomes able to process its own events.

CQGDirectEventsAccessor Interface : IsReady Event

Glossary Item Box

Description

Syntax

Visual Basic
Public Event IsReady( _
   ByRef ready_status As eReadyStatus _
)

Parameters

ready_status
ValueDescription
rsBusy

The host application (MS Excel) is in edit mode.

rsNotReady

The host application (MS Excel) isn't ready (when Application.Ready = False).

rsReady

The host application (MS Excel) is ready (when Application.Ready = True).

readyStatus should reflect the Excel.Application.Ready flag. If Application.Ready is True, then readyStatus should be assigned rsReady. If Application.Ready is False then readyStatus should be assigned rsNotReady.

If CQGCEL gets rsBusy or rsNotReady, the attempt is repeated after the timeout, until CQGCEL gets rsReady and becomes able to process its own events.

See Also