Table of Content
HAL Forum
procedure WindowDoPrint (
integer WindowID)
Description:
Calls the printing event for the specified window.
Parameters:
WindowID Record Window that has FormName defined
// Load DEMO data before testing this
// This will run right after HansaWorld has been started
global
updating procedure OnApplicationStartup()
begin
    record IVVc IVr;
    integer wn; 
    
    SetCompany(1,true);
    LoopMain(IVr,1,true);
    wn = OpenWindow("IVDClass",0,0,"","",IVr);
    WindowDoPrint(wn);

  return;
end;
Related topics:
««