J
jobsxy
Unregistered / Unconfirmed
GUEST, unregistred user!
function TForm1.Myudf(xxx:string):integer;
begin
try
.....
.....
myudf := 0;
finally
xxxxxx.free;
end;
end;
我需要这样,如果这段程序执行无误,则函数根据需要返回数值,如果有问题则返回0,
(执行无误时,不可能会有0的返回值)。请教该如何写?
begin
try
.....
.....
myudf := 0;
finally
xxxxxx.free;
end;
end;
我需要这样,如果这段程序执行无误,则函数根据需要返回数值,如果有问题则返回0,
(执行无误时,不可能会有0的返回值)。请教该如何写?