Adding Code to Your Application

The structure of your application remains the same as when using a dialog box that does not contain an ActiveX control. See Writing a Dialog Application for details. This section discusses programming specific to ActiveX controls.

Your application must call COMINITIALIZE before calling DLGINIT with a dialog box that contains an ActiveX control. Your application must include the statement USE DFCOM to access COMINITIALIZE. Your application must call COMUNINITIALIZE when you are done using ActiveX controls, but not before calling DLGUNINIT for the dialog box that contains the ActiveX control.

You can call the methods of an ActiveX control and set and retrieve its property values using the interfaces generated by the Fortran Module Wizard or by using the DFAUTO routines. To do this, you must have the object's IDispatch interface pointer. Use the DLGGET function with the ActiveX control's name, the DLG_IDISPATCH control index, and an integer variable to receive the IDispatch pointer. For example:

  retlog = DlgGet( dlg, IDC_ACTIVEX, idispatch, DLG_IDISPATCH )

You do not need to specify the index DLG_IDISPATCH because it is the default integer index for an ActiveX control.

Note however, that the control's IDispatch pointer is not available until after the control has been created and is only valid until the dialog box is closed. The control is created during the call to DLGMODAL or DLGMODELESS. If you call DLGGET to retrieve the IDispatch pointer before calling DLGMODAL or DLGMODELESS, the value returned will be 0.

Do not call COMRELEASEOBJECT with the iDispatch pointer returned by DLGGET. The dialog procedures use a reference counting optimization since the lifetime of the control is guaranteed to be less than the lifetime of the dialog box.

If you want to use a method or property of a control before the dialog box is displayed to your application's user, you can use a DLG_INIT callback. Call DLGSETSUB using the dialog box name and the DLG_INIT index to define the callback. For example:

   retlog = DlgSetSub( dlg, IDD_DIALOG, DlgSub, DLG_INIT )

The DLG_INIT callback is called after the dialog box is created but before it is displayed (with callbacktype=DLG_INIT) and immediately before the dialog box is destroyed (with callbacktype=DLG_DESTROY). The DLG_INIT callback is the soonest that the control's IDispatch pointer is available. The DLG_DESTROY callback is the latest that this pointer is valid. After the DLG_DESTROY callback, the ActiveX control is destroyed.

The following example shows using a DLG_INIT callback to reset the state of a control property before it is destroyed:

  SUBROUTINE mmplayerSub( dlg, id, callbacktype )
    !DEC$ ATTRIBUTES DEFAULT :: mmplayerSub
    use dflogm
    use dfcom
    use dfauto
    implicit none
    type (dialog) dlg
    integer id, callbacktype
    include 'resource.fd'
    integer obj, iret
    logical lret
    if (callbacktype == dlg_init) then
        lret = DlgGet(dlg, IDC_ACTIVEMOVIECONTROL1, obj)
        !  Add any method or property calls here before the
        !  dialog box is displayed
    else if (callbacktype == dlg_destroy) then
        !  Reset the filename to "" to "close" the current file
        lret = DlgGet(dlg, IDC_ACTIVEMOVIECONTROL1, obj)
        iret = AUTOSETPROPERTY(obj, "FileName", "")
    endif
  END SUBROUTINE mmplayerSub

The module generated by the Fortran Module Wizard for an ActiveX control contains a number of sections:

See Calling the Routines Generated by the Module Wizard for more information on using the method and property interfaces generated by the Fortran Module Wizard.

In addition to methods and properties, ActiveX controls also define events to notify your application that something has happened to the control. The dialog procedures provide a routine, DLGSETCTRLEVENTHANDLER, that allows you to define a routine to be executed when an event occurs.

The DLGSETCTRLEVENTHANDLER function has the following interface:

integer DlgSetCtrlEventHandler( dlg, controlid, handler, dispid, iid )

The arguments are as follows:

dlg (Input) Derived type DIALOG. Contains dialog box parameters.
controlid (Input) Integer. Specifies the identifier of a control within the dialog box (from the .FD file).
handler (Input) EXTERNAL. Name of the routine to be called when the event occurs.
dispid (Input) Integer. Specifies the member id of the method in the event interface that identifies the event
iid (Input, Optional) Derived type(GUID). Specifies the Interface identifier of the source (event) interface. If not supplied, the default source interface of the ActiveX control is used.

Consider the following function call:

  ret = DlgSetCtrlEventHandler( dlg, IDC_ACTIVEMOVIECONTROL1, &
	ActiveMovie_ReadyStateChange, -609, IID_DActiveMovieEvents2 )

In this function call:

The interface generated by the Fortran Module Wizard for the ReadyStateChange event follows:

 INTERFACE
    !Reports that the ReadyState property of the ActiveMovie Control has changed
    ! MEMBERID = -609
    SUBROUTINE DActiveMovieEvents2_ReadyStateChange($OBJECT, ReadyState)
        INTEGER(4), INTENT(IN)	:: $OBJECT	 ! Object Pointer
        !DEC$ ATTRIBUTES VALUE	:: $OBJECT
        INTEGER(4)	:: ReadyState
        !DEC$ ATTRIBUTES VALUE	:: ReadyState
        !DEC$ ATTRIBUTES STDCALL :: DActiveMovieEvents2_ReadyStateChange
     END SUBROUTINE DActiveMovieEvents2_ReadyStateChange
  END INTERFACE

The handler that you define in your application must have the same interface. Otherwise, your application will likely crash in unexpected ways because of the application's stack getting corrupted.

Note that an object is always the first parameter in an event handler. This object value is a pointer to the control's source (event) interface, not the IDispatch pointer of the control. You can use DLGGET as described above to retrieve the control's IDispatch pointer.