Board index » delphi » Newbie: "Unsatisfied forward or external declaration"
Torstein Tysklind
![]() Delphi Developer |
Thu, 31 Aug 2000 03:00:00 GMT
Newbie: "Unsatisfied forward or external declaration"As a newbie I've been wringing my brain over this errormessage from the There is something wrong with the declaration of the "Function TiMin", Is there anyone who can help me? Torstein Tysklind unit tidbild; interface uses type Function TiMin (Tid:String) : Integer; private end; var implementation {$R *.DFM} Function TiMin (Tid:String) : Integer; procedure TForm2.FormCreate(Sender: TObject); procedure TForm2.BitBtn1Click(Sender: TObject); end. |