我在表但type区声明了一个函数,具体如下:
function logfun(struser,strtxtvalue,strkey:string):integer;
然后在代码区定义函数:
function logfun(struser,strtxtvalue,strkey:string):integer;
begin
try
.....
logfun:=1;
except
logfun=2;
end;
end;
单编译不过去,提示:Unsatisfied forword or external declaration 
'Tform3.logfun'   意思是:不满足的向前或外部说明
紧急在线求救…………