(Gast)
n/a Beiträge
|
AW: Button.caption Änderung über Form 2
8. Dez 2013, 22:47
Delphi-Quellcode:
unit Unit1;
.
.
.
implementation
{$R *.dfm}
uses Unit2;
------------------------------------
unit Unit2;
interface
Uses Unit1;
const
Author = ' Tiu Hathor';
procedure B7textDE;
implementation
procedure B7textDE;
begin
Form1.B7.Caption:= Author;
end;
|
|
Zitat
|