Einzelnen Beitrag anzeigen

Benutzerbild von City Light
City Light

Registriert seit: 17. Sep 2002
314 Beiträge
 
#21
  Alt 16. Okt 2002, 14:05
Ich hab da mal was probiert..

Code:
procedure TForm1.Edit1MouseMove(Sender: TObject; Shift: TShiftState; X,
  Y: Integer);
begin
  ListBox1.Visible := True;
end;

procedure TForm1.ListBox1Click(Sender: TObject);
begin
  Edit1.Text := ListBox1.Items.Strings[ListBox1.ItemIndex];
  ListBox1.Visible := False;
end;
Ich hoffe ich konnte dir helfen?

MFG
  Mit Zitat antworten Zitat