Results 1 to 3 of 3

Thread: Quick Queston about Tforms

  1. #1
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default Quick Queston about Tforms

    Can I add like a Information box that has arrow scroll-bar at the side like this:


  2. #2
    Join Date
    Mar 2007
    Location
    Mars, I thought all men were from Mars.
    Posts
    513
    Mentioned
    7 Post(s)
    Quoted
    124 Post(s)

    Default

    Quote Originally Posted by rjj95 View Post
    Can I add like a Information box that has arrow scroll-bar at the side like this:
    List := TListBox.Create(TForm);
    List .Parent := TForm;
    List .Left := 155;
    List .Top := 290;
    List .Width := 135;
    List .Height := 70;

    If you add more lines than the hight of the box it will add a scroll bar. Is this what your looking for?
    Not scripting for RS anymore, sorry. Banned too many times.
    MY SCRIPTS

  3. #3
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by bud_wis_er_420 View Post
    List := TListBox.Create(TForm);
    List .Parent := TForm;
    List .Left := 155;
    List .Top := 290;
    List .Width := 135;
    List .Height := 70;

    If you add more lines than the hight of the box it will add a scroll bar. Is this what your looking for?
    No, a tList box is pretty much a TCombo box without a dropdown bar

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •