Zitat von
mkinzler:
Hast du diese in einer Klasse angelegt oder wirklich global?
Hier mal etwas Code von mir.
Delphi-Quellcode:
unit GlobalUnit;
interface
uses
SysUtils, ...
TGlobal =
class(TComponent)
procedure Funktion1(Macro:
string);
public
Variable1:
String;
end;
var
Global: TGlobal;
X,Y: Integer;
Implementation
Procedure TGlobal.Funktion1(Macro:
string);
begin
....
Tanja