| 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-2011 Quality Software Components Ltd