Table of Content
HAL Forum
function string HobFolder (
)
Description:
Returns the path to the system folder where .hob files are kept. Note that the path returned is not absolute, but rather the path to the hob folder from HansaWorld root.
procedure AddJewelleryFiles()
begin
  if (FileExists(HobFolder & "jwlcli.hob")) then begin
    SourceFile(HobFolder & "jwlcli.hob",kCodeLevelIndustry);
  end;
  if (FileExists(HobFolder & "jwlsvr.hob")) then begin
    SourceFile(HobFolder & "jwlsvr.hob",kCodeLevelIndustry);
  end;
  return;
end;
Related topics:
««