Table of Content
HAL Forum
procedure TextField (
integer x,integer y,integer w,integer h,list field_name,
list paste_special)
Description:
Puts big text field in a window
Parameters:
x left upper corner - horisontal coordinate
y left upper corner - vertical coordinate
w width of field
h height of field
field_name the name of the database field with type M4TextField
paste_special the name of the paste special window
event DefineWindows
begin
  real x,h,h1,h2,h3,h4,h5,h6,h7,hs,v,v2,l,vs,vm,vm2,f,t;
  
  SetLangMode(LangEnglish,"ENG",0);

  WindowBegin("Signature",ConfSignDClass,CGview,ConfSignView);
  UseView(ConfSignVc);
  SetWRect(20,80,450,280);
  vs = 20;h = 100;h2 =  330;h4 = 500; v = 6;
  TextField(20,11,-41,-10,Math,0);
  EndWindow;

  return;
end;

Related topics:
««