Topics
02 Sep 2021, 22:48
 1075
 2
30 Aug 2021, 15:04
 903
 4
17 Mar 2017, 07:05
 7
 1039
 1
Replies

Nickachino
30 Aug 2021, 15:48

RE:

PanagiotisCharalampous said:

Hi Nick,

You have two options

1) Hard code the expiration date in the cBot's code and exit the cBot in case the expiration date has passed.

2) Implement a licensing system that will control the trial period of your cBot.

See an example for point 1 below

            var dateTime = new DateTime(2021, 9, 30);
            if (Server.Time > dateTime)
                return;

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

Thanks for the quick response.

I quickly were bale to implement the hardcoded style, however do you have any direction on how to go about implementing the licensing system?


@Nickachino

Nickachino
17 Mar 2017, 06:35

I agree that this would be a very usable feature. I would definitely use it. Common Spotware, work your magic.


@Nickachino