Kann ich Controls finden, wenn ich nur die Caption bzw den Text vom Control hab also so :
Delphi-Quellcode:
ControlHandle := FindWindowEx(Fenster,0,
nil,Pchar(Edit2.Text));
Control := FindControl(ControlHandle);
Control.Left := Control.Left + 10;
// <- Zugriffsverletzung .. wahrscheinlich wegen falschem Handle
Aber das funktioniert nicht weil ich immer Zugriffsverletzungen bekomme ...
sogar bei :
Delphi-Quellcode:
ControlHandle := FindWindowEx(Fenster,0,'TButton',Pchar(Edit2.Text));
Control := FindControl(ControlHandle);
Control.Left := Control.Left + 10;
gibts die Zugriffsverletzung
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."