Table of Content
HAL Forum
procedure Sizeable (
Integer MinWidth,Integer MinHeight,Integer MaxWidth,Integer MaxHeight)
Description:
Makes the window resizable
Parameters:
MinWidth Minimum width
MinHeight Minimum height
MaxWidth Maximum width
MaxHeight Maximum height
  WindowBegin("Credit Agreement Interest Rates",CredManRateLClass,CGmlist,-);
  SpawnClass(CredManRateDClass);
  SetWRect(20,80,400,298);
  Sizeable(200,100,0,0);
  UseView(CredManRateVc);
  RecordList(4,17,-21,-39);
  RlColKey(4,4,"Type",Type,false,MainKey);
  RlColKey(100,100,"Date",Date,false,Date);
  RlCol(-100,-100,"Rate",IntRate,false);
  SearchField("Search");
  EndWindow;

Related topics:
««