Getting started with TMS FNC Cloud Storage Services
Prerequisites
TMS FNC Core installed and the runtime package added to the project.
TMS FNC Cloud Pack installed.
An account and API credentials for cloud storage providers.
Add the component
Drop TTMSFNCCloudStorageServices onto a form or create it in code.
Set the required authentication properties with your API credentials.
Call the desired method to interact with cloud storage providers.
{ Inside your form's OnCreate event: }
var
Cloud: TTMSFNCCloudStorageServices;
begin
Cloud := TTMSFNCCloudStorageServices.Create(Self);
{ Set authentication and connection properties here. }
end;
Next steps
Guides — authentication setup, key operations, and error handling.