wenn ich auf den button klicke soll auf einem image der anderen form text ausgegeben werden.
meine .dpr sieht so aus:
Delphi-Quellcode:
program test;
uses
Forms,
Unit1 in 'Unit1.pas' {Form2},
Unit2 in 'Unit2.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm2, Form2);
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
und das ist der teil meiner Unit1:
Zitat:
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, Unit2;
.....
procedure bla(...);
begin
Form1.Image1.Canvas.TextOut(...xyz...);
end;
das war schon alles. die form1 habe ich natürlich durch Form1.Show sichtbar gemacht vorher. hat jemand ne idee was der fehler sein könnte?