Table of Content
HAL Forum
procedure Report (
string ListName,wclass WindowClass,function ReportFunction,integer Reserved,module ModuleCode)
Description:
Will make the specified report selectable from given module's Report List. Defined inside startup event block and accompanied with SetLangMode.
Parameters:
ListName Will define the name that will appear in the report list.
WindowClass Report definition window that will be opened when user selects this report from report list.
ReportFunction Report function that will be executed when user runs the report (should end with Rn)
Reserved Reserved for internal use.
ModuleCode Defines the module where this report will be listed
event startup
begin
  Real h,v,l,vs;

  SetLangMode(LangEnglish,"ENG",0);

  Report("Item List",ArtRClass,ArtRn,0,modNL);

  return;
end;
Related topics:
««