Saturday, March 12, 2022

Solved - Uninstall / Remove Fortinet / FortiClient on Windows

Once the FortiClient was installed on my PC, I could not disable or uninstall it even though I have not used it for about two years. I am so glad that I eventually removed it from my computer by following the instruction on a website.

 Click HERE to read the original post.

1. Make sure to disconnect the FortiClient from the server and close the FortiClient.

2. Click the Start and type Command to find the Command Prompt app. Right-click on it and select run as administrator.

3. Execute the command below to ensure it returns what you want to remove.

    wmic product where "name like 'Forti%%'"

4. Execute the command below to uninstall FortClient.

    wmic product where "name like 'Forti%%'" call uninstall /nointeractive

   It may take some time to finish and restart your computer without warning.


Monday, February 14, 2022

Crystal Reports: How to suppress the display of a field / column with a Boolean condition

 A. Use Crystal Report Suppress

1. Open the rpt template in SAP Crystal Reports, right click on the field you want to suppress, and select Format Field.


2. Select the Common tab in the Format Editor window, check the Suppress, and click on the corresponding X-2 button.

3. In the popped up window, enter a boolean value to specify when to suppress the field. A true value will suppress the field display and a false value will allow it to display. 



4. Click the Save and close to save.


B. Use Crystal Report Formula

1. Click the View menu and select Field Explorer. 


2. Right-click the Formula Fields and choose New, enter a formula name, and click OK.


3. Write your condition for displaying the field values.




4. Click the Save and close to save.