JobConfigure(ParentHwnd As Long, ByRef Configuration As String ) As Long

Description

When Data source extension is selected as the form source in an Interpret job description, this event is fired when you click Configure on the Interpret tab of the Job description dialog.

Parameters

Parameter

Description

ParentHwnd 

The handle to the dialog’s window. Used if the extension is to display a dialog.

Configuration 

The string that carries the current configuration. Saved with the job.

Return values

Return value

Description

EV_OK

Normal return.

EV_OK_ABORT 

No effect— treated the same as EV_OK.

EV_ERROR

Causes an error message and job termination.

Suggested usage

The data source extension can show its own dialog for configuring the Interpret job. For example, it can tell Interpret where to get files for interpretation. The configuration can be saved with the job by setting the Configuration parameter to a text value.

To retrieve the configuration string, use the GetDataSourceConfiguration method on the Job object.

Remarks

Used by ReadSoft’s EMAIL program.

Job-level events