Autor Beitrag
Hidden
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 2242
Erhaltene Danke: 55

Win10
VS Code, Delphi 2010 Prof.
BeitragVerfasst: So 27.01.08 21:41 
Hi,

Ich suche eine Möglichkeit, den blinkenden Cursor im TEdit um eine, bzw. zwei,
Positionen nach hinten zu verschieben.
Für TMemo habe ich per Googeln eine Möglichkeit gefunden:
ausblenden Delphi-Quelltext
1:
2:
3:
4:
procedure TForm1.Button1Click(Sender: TObject);
begin
 Memo1.Perform(WM_VSCROLL, SB_TOP, 0); 
end;

Die Syntax für diese Methode bei TEdit ist mir jedoch nicht bekannt, auf dem Gebiet bin ich neu :D
Gibt es ausserdem noch andere Möglichkeiten??
(Und was bedeutet die Null?)

Thx im Voraus,

Moderiert von user profile iconChristian S.: Code- durch Delphi-Tags ersetzt
Blackheart666
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 2195

XP
D3Prof, D6Pers.
BeitragVerfasst: So 27.01.08 21:54 
SelStart

_________________
Blackheart666
Der Irrsinn ist bei Einzelnen etwas Seltenes, - aber bei Gruppen, Parteien, Völkern, Zeiten die Regel. (Friedrich Nietzsche)
Hidden Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 2242
Erhaltene Danke: 55

Win10
VS Code, Delphi 2010 Prof.
BeitragVerfasst: So 27.01.08 22:23 
Titel: Läuft
Läuft, danke.