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.

This is the only point that your addin can request feedback from the user. This function is called from the repository configuration dialog at a time when the repository service is not running.

Parameters

None

Example (Delphi)

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


 


© 1995-2018 MCN Software