Monday

FuzzyCLIPS: How to change the program icon

Download the FuzzyCLIPS icon below to your computer and rename it to "fzclipswin.ico" with .ico file extension name. Copy this file to C:\Windows\System32\fzclipswin.ico.



Right-click on the fzclipwin.exe at C:\FuzzyCLIPS\pc-prjct\VC++\fzClips\fzclipswin\Release\fzclipswin.exe, select "Send to | Desktop (create shortcut)"

Right-click the fzclipwin shortcut on the desktop, select Properties.
Tab on the Shortcut.
Click on the button "Change Icon".
Browse to "C:\Windows\System32\fzclipswin.ico" and click the button OK.

No comments:

Measure execution time with Julia, example using sorting algorithms

# random integers between 1 and 100 inclusive, generate thousands of them x = rand ( 1 : 100 , 100000 ) @time sort (x; alg=InsertionSort, r...