Ir al contenido


Foto

[TRUCO DELPHI] Adicionandole un ScrollBar Horizontal a un TListBox.


  • Por favor identifícate para responder
No hay respuestas en este tema

#1 sir.dev.a.lot

sir.dev.a.lot

    Advanced Member

  • Miembros
  • PipPipPip
  • 545 mensajes
  • Location127.0.0.1

Escrito 10 diciembre 2016 - 04:56

[TRUCO DELPHI] Adicionandole un ScrollBar Horizontal a un TListBox.


delphi
  1. MaxWidth := 0;
  2. for i := 0 to ListBox1.Items.Count - 1 do
  3. if MaxWidth < ListBox1.Canvas.TextWidth(ListBox1.Items.Strings[i]) then
  4. MaxWidth := ListBox1.Canvas.TextWidth(ListBox1.Items.Strings[i]);
  5. SendMessage(ListBox1.Handle, LB_SETHORIZONTALEXTENT, MaxWidth+100, 0);

Saludos!


  • 1




IP.Board spam blocked by CleanTalk.