VcsConfigureAddin
Return to Introduction  Previous page  Next page
If your addin needs to be configured to work properly (i.e. an addin to E-Mail users), you should export this procedure. If you export this procedure, the Configure... button on the Addin dialog box will be enabled when your addin is selected.

procedure VcsConfigureAddin; stdcall; export;  

You can display a dialog box to the user to allow them to configure your addin. Note that you are responsible for storage and retrieval of the configuration information.

Parameters

None

Example (Delphi)

procedure VcsConfigureAddin;  
begin  
  with TMyConfigDlg.Create( Application ) do  
  try  
    ShowModal;  
  finally  
    Free;  
  end;  
end;  



 


© 1995-2018 MCN Software