+ Reply to Thread
Results 1 to 4 of 4

Thread: Scroll Bar

  1. #1
    Newbie JakeWindu is an unknown quantity at this point
    Join Date
    Nov 2009
    Posts
    21

    Scroll Bar

    Hi!

    I am wondering, how do you get a vertical scroll bar to work?

    I made a notepad app using the tutorial on this site and I added a scroll bar, how do i get the scroll bar to work?

  2. #2
    Programming God thegamemaker has a spectacular aura about thegamemaker has a spectacular aura about thegamemaker's Avatar
    Join Date
    Nov 2009
    Location
    At the end of the rainbow.
    Age
    14
    Posts
    619
    Blog Entries
    1

    Re: Scroll Bar

    You can turn Auto Scroll to true in the properties which will add a scroll bar any time needed but if that isn't what you want this may help - How to add scrollbars in C#? - Software Development.Hope this helped.
    My Web Site

  3. #3
    Learning Programmer lobo521 is on a distinguished road
    Join Date
    Jan 2010
    Posts
    46

    Re: Scroll Bar

    Simple notepad:

    Code:
    using System.Windows.Forms;
    
    namespace WindowsFormsApplication2
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
    
                var textBox =
                    new TextBox
                        {
                            Multiline = true, 
                            ScrollBars = ScrollBars.Vertical, 
                            Dock = DockStyle.Fill
                        };
    
                Controls.Add(textBox);
            }
        }
    }

  4. #4
    Newbie pauldaniel is an unknown quantity at this point
    Join Date
    Feb 2010
    Posts
    1

    Re: Scroll Bar

    just set your forms AutoScroll property to true

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

     

Similar Threads

  1. How to display an alert with a scroll bar
    By tarek.mostafa in forum JavaScript and CSS
    Replies: 10
    Last Post: 11-11-2009, 06:29 AM
  2. How to scroll the screen in openGL
    By Daskill in forum C and C++
    Replies: 5
    Last Post: 03-24-2009, 03:50 PM
  3. Scrolling
    By danrivers in forum C# Programming
    Replies: 0
    Last Post: 02-04-2009, 04:08 PM
  4. Windows XP Tricks & Tips!!!!..new ones.
    By pranky in forum Tutorials
    Replies: 9
    Last Post: 08-23-2008, 03:22 PM
  5. issue with scroll sync
    By jiggsroger in forum C# Programming
    Replies: 3
    Last Post: 04-09-2008, 12:07 PM

Bookmarks

Bookmarks

     
        Algorithms and Data Structures

        Java tutorials

        Algorithms Forum

Posting Permissions

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