mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-05 17:05:19 -05:00
6b55f916c1
git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@400 3f818213-9676-44b0-a9b4-5e4c4e03d09d
36 lines
743 B
Plaintext
36 lines
743 B
Plaintext
program new;
|
|
var
|
|
TempVar : Boolean;
|
|
procedure OnClick(Sender : TObject);
|
|
begin;
|
|
TempVar := True;
|
|
Writeln('YOU HAS CLICKED THE BUTTON');
|
|
end;
|
|
function x : Boolean;
|
|
var
|
|
MyForm : TForm;
|
|
AButton : TButton;
|
|
begin;
|
|
TempVar := False;
|
|
Result := false;
|
|
MyForm := TForm.Create(nil);
|
|
MyForm.Width := 250;
|
|
MyForm.Height := 250;
|
|
AButton := TButton.Create(MyForm);
|
|
AButton.Parent := MyForm;
|
|
Abutton.SetBounds(100,100,100,50);
|
|
AButton.OnClick := @OnClick;
|
|
AButton.Caption := 'Test';
|
|
MyForm.ShowModal;
|
|
MyForm.Free;
|
|
Result := TempVar;
|
|
end;
|
|
var
|
|
v : TVariantArray;
|
|
begin
|
|
if ThreadSafeCall('x',v) then
|
|
Writeln('You clicked the button! WinnOr')
|
|
else
|
|
Writeln('You did not click the button, fail all the way');
|
|
end.
|