Table of Content
HAL Forum
procedure IconList (
integer StartX,integer StartY,integer EndX,integer EndY,integer Reserved,
string Reserved2)
Description:
Creates and icon list object to the window that is being defined. Controlling this object is reserved for the internal use and is implemented on Conference / Mailboxes windows. Used inside WindowBegin/EndWindow block.
Parameters:
StartX The X coordinate of the upper left corner of the icon list object.
StartY The Y coordinate of the upper left corner of the icon list object.
EndX The X coordinate of the bottom right corner of the icon list object.
EndY The Y coordinate of the bottom right corner of the icon list object.
Reserved Reserved for internal use. Should be set to 0.
Reserved2 Reserved for internal use. Should be set to "".
event DefineWindows
begin
  real x,h,h1,h2,h3,h4,h5,h6,h7,v,v2,l,vs,vm,f,t;
  
  SetLangMode(LangEnglish,"ENG",0);

  WindowBegin("Conferences",ConferenceWClass,CGother,RcType);
  SetWRect(20,80,500,440);
  Sizeable(-1,-1,0,0);
  MailBackground;
  ToolBar;
  h = 34;
  HalPushButton(h,5,h+80,22,"ConferenceWToolProperties","Properties");
  h = h+92;
  PushButton(h,5,h+80,22,ToolPresentation,"Presentation");
  EndToolBar;
  v = 16;
  if (PocketVersion==false) then begin
    IconList(9,21,-7,-20,0,"");
  end;
  EndWindow;

  return;
end;
Related topics:
««