- Run automatically at startup in Windows
- Bypass user password logon Windows
- Auto get OTP with the Secret Key set on GUI
- Auto login page inside of FPT Retail with the account set on GUI (Chrome, FireFox, Edge, IE, Brave)
- Checkin at the set time on GUI
- Checkout at the set time on GUI
- Auto change password bypass rule inside
- Auto update new version
using AnimatorNS;
using System.Windows.Forms;
/// <summary>
/// Show animation async.
/// </summary>
/// <param name="type">Effect type.</param>
/// <param name="spd">Frame per milisecond.</param>
internal static void ShowAnimatAsync(this Control ctrl, AnimationType type, float spd)
{
var animat = new Animator
{
TimeStep = spd,
AnimationType = type
};
animat.Show(ctrl);
}
/// <summary>
/// Hide animation async.
/// </summary>
/// <param name="type">Effect type.</param>
/// <param name="spd">Frame per milisecond.</param>
internal static void HideAnimatAsync(this Control ctrl, AnimationType type, float spd)
{
var animat = new Animator
{
TimeStep = spd,
AnimationType = type
};
animat.Hide(ctrl);
}