formAddString


function formAddString(s:string):integer;

Inserts a (uneditable) string label on to the form. The function returns the ID of a newly inserted element.

  var label_id: integer;
  begin
    label_id := formAddString('Hello world');
    showForm;
    delay(2000);
  end.

See also: showForm, formRemove