Table of Content
HAL Forum
procedure HalPushButton (
Integer left,Integer top,Integer right,Integer bottom,string funcname,
string name)
Description:
Adds push Button to Window
Parameters:
left Horizontal position of left top corner
top Vertical position of left top corner
right Horizontal position of right bottom corner
bottom Vertical position of right bottom corner
funcname Funcion called when presing button
name HalPushButton name
  WindowBegin("Paste Supplier",AllVESClass,CGslist,-);
  SetWRect(64,80,510,291);
  Sizeable(-1,-1,0,0);
  UseView(CUVc);
  SpawnClass(CUDClass);
  v = 5;  vs = 20; l = 80;
  h = 20; HalPushButton(h,v,h+l,v+vs,"SwitchToCU","Customers");
  RecordList(4,17+28,-21,-39);
  RlColKey(4,4,"N_o",Code,false,VEActCode);
  RlColKey(180,180,"Name",Name,false,VEActName);
  SearchField("Search");
  EndWindow;

Related topics:
««