meta data for this page
  •  

ibec_GetCurrentDir

This function returns the fully qualified name of the current directory.

Description

No additional description…

Syntax

No additional syntax…

Example

execute IBEBlock
returns (CurrDir varchar(100))
as
begin
  CurrDir = ibec_GetCurrentDir();
  suspend;
end