Table of Content
HAL Forum
procedure FormWindow (
)
Description:
When used in a window, it will show as Symbian form on S60 devices rather than as a Hansa painted window. Put it before any controls in the window.
event DefineWindows
begin
  real vs,v;

  SetLangMode(LangEnglish,"ENG",0);

  WindowBegin("Car",WLCarDClass,CGview,WLCarView);
    SetWRect(20,80,440,250);
    UseView(WLCarVc);
    FormWindow;
    vs=20;v=20;
    EditField(120,v,70,"Registration Number",Normal,CarCode,false,0); 
  EndWindow;

  return;
end;
Related topics:
««