REAL-TIME

VBA Projects

Full Access with Source Code
  • Designed and Developed by PNRao

  • Full Access with VBA Source Code

  • Well Commented Codes Lines

  • Creative and Professional Design

Effortlessly
Manage Your Projects

120+ Project Management Templates

Seamlessly manage your projects with our powerful & multi-purpose templates for project management.

120+ PM Templates Includes:
  • 50+ Excel Templates

  • 50+ PowerPoint Templates

  • 25+ Word Templates

Share Post

VBA Top Property of ListBox ActiveX Control in Excel to sets or gets the distance between the top edge of the ListBox control and the top edge of the userform or worksheet in points. In other words we use ‘Top’ property of list box to set the list box top position.

ListBox_Top_Property

ListBox_Top_Property – Syntax

Please find the below syntax of ListBox_Top_Property in Excel VBA.

ListboxName.Top=Top position in number format

Where ListboxName represents the ListBox object. In the above syntax we are using a ‘Top’ property of ListBox object to set the top position.

ListBox_Top_Property – Explanation & Example

Here is the example for ListBox_Top_Property. It will take you through how to set top property of list box using Excel VBA. Here you can find or see how we sets or gets Top property of list box manually or using code.

ListBox_Top_Property: Change Manually

Please find the following details how we are changing manually ‘Top’ of listbox property.

    1. Go To Developer Tab and then click Visual Basic from the Code or Press Alt+F11.
    2. Go To Insert Menu, Click UserForm. Please find the screenshot for the same.

Excel VBA UserForm CheckBox

    1. Drag a Listbox on the Userform from the Toolbox.

List Box BackColor Property

    1. Right click on the List box. Click on properties from the available list.

List Box BackColor Property2

    1. Now you can find the properties window of listbox on the screen. Please find the screenshot for the same.

List Box Properties

    1. On the left side find ‘Top’ property from the available List Box properties.
    2. On the right side you can mention top position in number format.
    3. For example, I have entered 15 (number). You can see same in the screen shot for your understand.

List Box Top Property3

ListBox_Top_Property: Change Using Code

Please find the following details how we are changing Top of listbox property with using Excel VBA code.

      1. Go To Developer Tab and then click Visual Basic from the Code or Press Alt+F11.
      2. Go To Insert Menu, Click UserForm. Please find the screenshot for the same.

Excel VBA UserForm CheckBox

      1. Drag a Listbox on the Userform from the Toolbox. Please find the screenshot for the same.

List Box Excel ActiveX Control _Im10

      1. Double Click on the UserForm, and select the Userform event as shown in the below screen shot.

List Box Excel ActiveX Control _Im1

      1. Now can see the following code in the module.
Private Sub UserForm_Initialize()

End Sub
      1. Now, add the following example code1 to the in between above event procedure.

Example Code1:

'Top Property of ListBox Control
Private Sub UserForm_Initialize()
    With UserForm1.ListBox1
        'ListBox Source Data
        .RowSource = "A2:B10"
        
        'Below statement represents top of the ListBox
        .Top = 25

        'The below statement will show header in each column
        .ColumnHeads = True
        
        'The following statement represents number of columns
        .ColumnCount = 2
    End With
End Sub 
      1. Now, Press ‘F5’ to see the following Output.

Output: If Top =25
Please find the below output when we set Top property value is 25. It is shown in the following Screen Shot.

List Box Top Property_1

Effortlessly Manage Your Projects and Resources
120+ Professional Project Management Templates!

A Powerful & Multi-purpose Templates for project management. Now seamlessly manage your projects, tasks, meetings, presentations, teams, customers, stakeholders and time. This page describes all the amazing new features and options that come with our premium templates.

Save Up to 85% LIMITED TIME OFFER
Project Management Templates

All-in-One Pack
120+ Project Management Templates

Essential Pack
50+ PM Templates

Excel Pack
50+ Excel PM Templates

PowerPoint Pack
50+ Excel PM Templates

MS Word Pack
25+ Word PM Templates

Ultimate Project
Management Template
Ultimate Resource
Management Template
Project Portfolio
Management Templates
Last Updated: March 2, 2023

Leave A Comment