Thema
:
Delphi
Überprüfen ob Text auf Form selektiert ist
Einzelnen Beitrag anzeigen
Lannes
Registriert seit: 30. Jan 2005
Ort: Münster
745 Beiträge
Delphi 3 Professional
#
2
Re: Überprüfen ob Text auf Form selektiert ist
6. Feb 2006, 14:04
Hallo,
ActiveControl hilft da weiter, etwa so:
markieren
Delphi-Quellcode:
If
(ActiveControl.InheritsFrom(TCustomEdit))
and
(TCustomEdit(ActiveControl).SelLength > 0)
then
//alles ok
damit erreichst Du alle Edits, Memos, Richedits ...
MfG Lannes
(Nichts ist nicht Nichts)
and
('' <>
nil
)
and
(Pointer('') =
nil
)
and
(@('') <>
nil
)
Zitat
Lannes
Öffentliches Profil ansehen
Mehr Beiträge von Lannes finden