Sophie

Sophie

distrib > Mageia > 3 > x86_64 > by-pkgid > 4835d46fcd16c3dd65b4592022afd305 > files > 2546

fpc-2.6.0-3.mga3.x86_64.rpm

Program pushme;

uses xforms;

var simpleform : PFL_FORM;
{    formname,buttonname : string;
}
begin
  fl_initialize(@argc, argv, 'FormDemo', nil, 0);
  simpleform := fl_bgn_form(FL_UP_BOX,230,160);
   fl_add_button(FL_NORMAL_BUTTON,40,50,150,60,'Pushme');
  fl_end_form;
  fl_show_form(simpleform, FL_PLACE_MOUSE, FL_NOBORDER, 'Push me');
  fl_do_forms;
  fl_hide_form(simpleform);
end.