VcsShowAbout
Return to Introduction  Previous page  Next page
If you want to supply Copyright and Version information to users, you should export this procedure. If you export this procedure, the About... context menu on the Addin dialog box will be enabled when your addin is selected.

procedure VcsShowAbout; 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 VcsShowAbout;  
begin  
  with TMyAboutBox.Create( Application ) do  
  try  
    ShowModal;  
  finally  
    Free;  
  end;  
end;  


 


© 1995-2018 MCN Software