You should learn the very basics of Lazarus / Delphi Programming.
LclIntf.GetTickCount is a very special case, where you need to specify in which unit the function is defined.
What Phil said is misleading for newbies.
The important thing is, that you ADD the unit to the uses clause:
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls, LclIntf;
You don't have to specify the "Namespace" if you don't use the windows unit as well.
So GetTickCount is enough, and LclIntf.GetTickCount is not necessary.