Table of Content
HAL Forum
procedure BrowseButtons (
Boolean printf)
Description:
Will not print browse buttons for browse between records if printf variable is setup as false, otherwise browse buttons will be printed.
Parameters:
printf  
event DefineWindows
begin

  WindowBegin("Test",TestDClass,CGview,-);
  SetWRect(64,80,530,440);
  BrowseButtons(false);
  Sizeable(-1,-1,0,0);
  UseView(TestVc);
  EditField(100,6,100,"Code",Normal,Code,false,0);
  EndWindow;

  return;
end;

Related topics:
««